/src/sys/external/bsd/compiler_rt/dist/lib/lsan/ |
lsan_thread.h | 48 void ThreadStart(u32 tid, tid_t os_id, bool workerthread = false);
|
lsan_thread.cc | 80 void ThreadStart(u32 tid, tid_t os_id, bool workerthread) { 90 thread_registry->StartThread(tid, os_id, workerthread, &args);
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_thread_registry.h | 48 bool workerthread; member in class:__sanitizer::ThreadContextBase 124 void StartThread(u32 tid, tid_t os_id, bool workerthread, void *arg);
|
sanitizer_thread_registry.cc | 22 detached(false), workerthread(false), parent_tid(0), next(0) { 78 workerthread = _workerthread; 306 void ThreadRegistry::StartThread(u32 tid, tid_t os_id, bool workerthread, 314 tctx->SetStarted(os_id, workerthread, arg);
|
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
tsan_report.h | 95 bool workerthread; member in struct:__tsan::ReportThread
|
tsan_rtl_thread.cc | 243 void ThreadStart(ThreadState *thr, int tid, tid_t os_id, bool workerthread) { 261 tr->StartThread(tid, os_id, workerthread, &args);
|
tsan_rtl_report.cc | 205 rt->workerthread = tctx->workerthread;
|
tsan_report.cc | 258 if (rt->workerthread) {
|
tsan_rtl.h | 768 void ThreadStart(ThreadState *thr, int tid, tid_t os_id, bool workerthread);
|