Searched refs:ThreadContext (Results 1 - 25 of 39) sorted by relevance

12

/netbsd-current/external/gpl3/gcc/dist/libsanitizer/lsan/
H A Dlsan_fuchsia.h26 class ThreadContext final : public ThreadContextLsanBase {
28 explicit ThreadContext(int tid);
H A Dlsan_posix.h30 class ThreadContext final : public ThreadContextLsanBase {
32 explicit ThreadContext(int tid);
H A Dlsan_thread.h43 class ThreadContext;
56 ThreadContext *CurrentThreadContext();
H A Dlsan_thread.cpp29 void *mem = MmapOrDie(sizeof(ThreadContext), "ThreadContext");
30 return new (mem) ThreadContext(tid);
62 ThreadContext *CurrentThreadContext() {
68 return (ThreadContext *)thread_registry->GetThreadLocked(GetCurrentThread());
H A Dlsan_fuchsia.cpp28 ThreadContext::ThreadContext(int tid) : ThreadContextLsanBase(tid) {} function in class:__lsan::ThreadContext
36 void ThreadContext::OnCreated(void *arg) {
48 void ThreadContext::OnStarted(void *arg) {
73 auto ctx = static_cast<ThreadContext *>(tctx);
H A Dlsan_posix.cpp24 ThreadContext::ThreadContext(int tid) : ThreadContextLsanBase(tid) {} function in class:__lsan::ThreadContext
36 void ThreadContext::OnStarted(void *arg) {
63 ThreadContext *context = static_cast<ThreadContext *>(
H A Dlsan.cpp38 if (ThreadContext *t = CurrentThreadContext()) {
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/lsan/
H A Dlsan_thread.h26 class ThreadContext : public ThreadContextBase { class in namespace:__lsan
28 explicit ThreadContext(int tid);
56 ThreadContext *CurrentThreadContext();
H A Dlsan_thread.cc29 void *mem = MmapOrDie(sizeof(ThreadContext), "ThreadContext");
30 return new(mem) ThreadContext(tid);
42 ThreadContext::ThreadContext(int tid) function in class:__lsan::ThreadContext
59 void ThreadContext::OnStarted(void *arg) {
70 void ThreadContext::OnFinished() {
98 ThreadContext *CurrentThreadContext() {
103 return (ThreadContext *)thread_registry->GetThreadLocked(GetCurrentThread());
133 ThreadContext *contex
[all...]
H A Dlsan.h52 ThreadContext *t;
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/lsan/
H A Dlsan_thread.h24 class ThreadContext : public ThreadContextBase { class in namespace:__lsan
26 explicit ThreadContext(int tid);
54 ThreadContext *CurrentThreadContext();
H A Dlsan_thread.cc27 void *mem = MmapOrDie(sizeof(ThreadContext), "ThreadContext");
28 return new(mem) ThreadContext(tid);
40 ThreadContext::ThreadContext(int tid) function in class:__lsan::ThreadContext
57 void ThreadContext::OnStarted(void *arg) {
68 void ThreadContext::OnFinished() {
96 ThreadContext *CurrentThreadContext() {
101 return (ThreadContext *)thread_registry->GetThreadLocked(GetCurrentThread());
131 ThreadContext *contex
[all...]
H A Dlsan.h50 ThreadContext *t;
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
H A Dtsan_rtl_thread.cc23 // ThreadContext implementation.
25 ThreadContext::ThreadContext(int tid) function in class:__tsan::ThreadContext
34 ThreadContext::~ThreadContext() {
38 void ThreadContext::OnDead() {
42 void ThreadContext::OnJoined(void *arg) {
53 void ThreadContext::OnCreated(void *arg) {
69 void ThreadContext::OnReset() {
76 void ThreadContext
[all...]
H A Dtsan_rtl_report.cc192 void ScopedReportBase::AddThread(const ThreadContext *tctx, bool suppressable) {
218 static ThreadContext *FindThreadByUidLocked(int unique_id) {
220 return static_cast<ThreadContext *>(
225 static ThreadContext *FindThreadByTidLocked(int tid) {
227 return static_cast<ThreadContext*>(
233 ThreadContext *tctx = static_cast<ThreadContext*>(tctx_base);
242 ThreadContext *IsThreadStackOrTls(uptr addr, bool *is_stack) {
244 ThreadContext *tctx = static_cast<ThreadContext*>(
[all...]
H A Dtsan_defs.h169 class ThreadContext;
H A Dtsan_rtl.h427 ThreadContext *tctx;
476 class ThreadContext : public ThreadContextBase { class in namespace:__tsan
478 explicit ThreadContext(int tid);
479 ~ThreadContext();
587 void AddThread(const ThreadContext *tctx, bool suppressable = false);
623 ThreadContext *IsThreadStackOrTls(uptr addr, bool *is_stack);
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/tsan/
H A Dtsan_rtl_thread.cc21 // ThreadContext implementation.
23 ThreadContext::ThreadContext(int tid) function in class:__tsan::ThreadContext
32 ThreadContext::~ThreadContext() {
36 void ThreadContext::OnDead() {
40 void ThreadContext::OnJoined(void *arg) {
51 void ThreadContext::OnCreated(void *arg) {
67 void ThreadContext::OnReset() {
74 void ThreadContext
[all...]
H A Dtsan_rtl_report.cc190 void ScopedReportBase::AddThread(const ThreadContext *tctx, bool suppressable) {
216 static ThreadContext *FindThreadByUidLocked(int unique_id) {
218 return static_cast<ThreadContext *>(
223 static ThreadContext *FindThreadByTidLocked(int tid) {
225 return static_cast<ThreadContext*>(
231 ThreadContext *tctx = static_cast<ThreadContext*>(tctx_base);
240 ThreadContext *IsThreadStackOrTls(uptr addr, bool *is_stack) {
242 ThreadContext *tctx = static_cast<ThreadContext*>(
[all...]
H A Dtsan_defs.h167 class ThreadContext;
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/tsan/
H A Dtsan_rtl_thread.cpp22 // ThreadContext implementation.
24 ThreadContext::ThreadContext(Tid tid) function in class:__tsan::ThreadContext
28 ThreadContext::~ThreadContext() {
32 void ThreadContext::OnReset() {
41 ThreadContext *tctx;
47 auto *tctx = static_cast<ThreadContext *>(tctx_base);
61 static void ReportIgnoresEnabled(ThreadContext *tctx, IgnoreSet *set) {
127 void ThreadContext
[all...]
H A Dtsan_rtl_report.cpp202 void ScopedReportBase::AddThread(const ThreadContext *tctx, bool suppressable) {
227 static ThreadContext *FindThreadByUidLocked(Tid unique_id) {
229 return static_cast<ThreadContext *>(
234 static ThreadContext *FindThreadByTidLocked(Tid tid) {
236 return static_cast<ThreadContext *>(
242 ThreadContext *tctx = static_cast<ThreadContext*>(tctx_base);
251 ThreadContext *IsThreadStackOrTls(uptr addr, bool *is_stack) {
253 ThreadContext *tctx =
254 static_cast<ThreadContext *>(ct
[all...]
H A Dtsan_defs.h186 class ThreadContext;
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
H A DMinidumpYAML.h110 yaml::BinaryRef ThreadContext; member in struct:llvm::MinidumpYAML::ExceptionStream
117 ArrayRef<uint8_t> ThreadContext)
119 MDExceptionStream(MDExceptionStream), ThreadContext(ThreadContext) {}
116 ExceptionStream(const minidump::ExceptionStream &MDExceptionStream, ArrayRef<uint8_t> ThreadContext) argument
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DMinidumpEmitter.cpp133 S.MDExceptionStream.ThreadContext = layout(File, S.ThreadContext);

Completed in 244 milliseconds

12