/src/sys/external/bsd/compiler_rt/dist/lib/lsan/ |
lsan_mac.cc | 66 u32 parent_tid; member in struct:__lsan::__anon4dd9625c0108 70 void lsan_register_worker_thread(int parent_tid) { 72 u32 tid = ThreadCreate(parent_tid, 0, true); 86 lsan_register_worker_thread(context->parent_tid); 105 lsan_ctxt->parent_tid = GetCurrentThread(); 152 int parent_tid = GetCurrentThread(); \ 154 lsan_register_worker_thread(parent_tid); \
|
/src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
asan_fuchsia.cc | 91 static AsanThread *CreateAsanThread(StackTrace *stack, u32 parent_tid, 100 asanThreadRegistry().CreateThread(user_id, detached, parent_tid, &args); 153 u32 parent_tid = GetCurrentTidOrInvalid(); local in function:__asan::BeforeThreadCreateHook 155 return CreateAsanThread(&stack, parent_tid, user_id, detached, name,
|
asan_mac.cc | 175 u32 parent_tid; member in struct:__asan::__anon0c94f7e60108 179 void asan_register_worker_thread(int parent_tid, StackTrace *stack) { 183 parent_tid, stack, /* detached */ true); 201 asan_register_worker_thread(context->parent_tid, &stack); 220 asan_ctxt->parent_tid = GetCurrentTidOrInvalid(); 285 int parent_tid = GetCurrentTidOrInvalid(); \ 288 asan_register_worker_thread(parent_tid, &stack); \
|
asan_rtems.cc | 100 static AsanThread *CreateAsanThread(StackTrace *stack, u32 parent_tid, 107 asanThreadRegistry().CreateThread(user_id, detached, parent_tid, &args); 150 u32 parent_tid = GetCurrentTidOrInvalid(); local in function:__asan::BeforeThreadCreateHook 152 return CreateAsanThread(&stack, parent_tid, user_id, detached,
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_thread_registry.h | 50 u32 parent_tid; member in class:__sanitizer::ThreadContextBase 102 u32 CreateThread(uptr user_id, bool detached, u32 parent_tid, void *arg);
|
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
tsan_report.h | 97 u32 parent_tid; member in struct:__tsan::ReportThread
|
tsan_rtl_thread.cc | 235 u32 parent_tid = thr ? thr->tid : kInvalidTid; // No parent for GCD workers. local in function:__tsan::ThreadCreate 237 ctx->thread_registry->CreateThread(uid, detached, parent_tid, &args); 238 DPrintf("#%d: ThreadCreate tid=%d uid=%zu\n", parent_tid, tid, uid);
|
/src/sys/compat/linux/common/ |
linux_sched.h | 119 uint64_t parent_tid; /* Where to store child TID, in parent's memory member in struct:linux_user_clone3_args
|