/src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
asan_fuchsia.cc | 92 uptr user_id, bool detached, 100 asanThreadRegistry().CreateThread(user_id, detached, parent_tid, &args); 145 static void *BeforeThreadCreateHook(uptr user_id, bool detached, 155 return CreateAsanThread(&stack, parent_tid, user_id, detached, name, 205 void *__sanitizer_before_thread_create_hook(thrd_t thread, bool detached, 209 reinterpret_cast<uptr>(thread), detached, name,
|
asan_rtems.cc | 101 uptr user_id, bool detached, 107 asanThreadRegistry().CreateThread(user_id, detached, parent_tid, &args); 142 static void *BeforeThreadCreateHook(uptr user_id, bool detached, 152 return CreateAsanThread(&stack, parent_tid, user_id, detached, 232 void *__sanitizer_before_thread_create_hook(uptr thread, bool detached, 237 thread, detached,
|
asan_win.cc | 149 bool detached = false; // FIXME: how can we determine it on Windows? local in function:INTERCEPTOR_WINAPI 152 AsanThread::Create(start_routine, arg, current_tid, &stack, detached);
|
asan_thread.h | 66 u32 parent_tid, StackTrace *stack, bool detached);
|
asan_interceptors.cc | 211 int detached = 0; local in function:INTERCEPTOR 213 REAL(pthread_attr_getdetachstate)(attr, &detached); 231 AsanThread::Create(start_routine, arg, current_tid, &stack, detached);
|
asan_thread.cc | 80 bool detached) { 87 asanThreadRegistry().CreateThread(*reinterpret_cast<uptr *>(thread), detached, 280 /* stack */ nullptr, /* detached */ true);
|
/src/libexec/httpd/lua/ |
Makefile | 29 ./bozo.lua --sign --detached a 36 ./bozo.lua --sign --detached a
|
/src/sys/external/bsd/compiler_rt/dist/lib/lsan/ |
lsan_thread.h | 50 u32 ThreadCreate(u32 tid, uptr uid, bool detached);
|
lsan_thread.cc | 75 u32 ThreadCreate(u32 parent_tid, uptr user_id, bool detached) { 76 return thread_registry->CreateThread(user_id, detached, parent_tid,
|
lsan_interceptors.cc | 381 int detached = 0; local in function:INTERCEPTOR 382 pthread_attr_getdetachstate(attr, &detached); 398 IsStateDetached(detached));
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_thread_registry.cc | 22 detached(false), workerthread(false), parent_tid(0), next(0) { 58 CHECK_EQ(false, detached); 69 // as detached. 70 if (!detached || status == ThreadStatusCreated) status = ThreadStatusFinished; 87 detached = _detached; 136 u32 ThreadRegistry::CreateThread(uptr user_id, bool detached, u32 parent_tid, 167 tctx->SetCreated(user_id, total_threads_++, detached, 251 tctx->detached = true; 289 bool dead = tctx->detached;
|
sanitizer_thread_registry.h | 47 bool detached; 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/tests/rtl/ |
tsan_test_util_posix.cc | 238 bool detached; member in struct:ScopedThread::Impl 362 ScopedThread::ScopedThread(bool detached, bool main) { 365 impl_->detached = detached; 371 &attr, detached ? PTHREAD_CREATE_DETACHED : PTHREAD_CREATE_JOINABLE); 382 if (!impl_->detached) 390 CHECK(!impl_->detached); 391 impl_->detached = true;
|
tsan_test_util.h | 70 explicit ScopedThread(bool detached = false, bool main = false);
|
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
tsan_rtl_thread.cc | 135 if (!detached) { 165 if (tctx->detached || tctx->status != ThreadStatusFinished) 232 int ThreadCreate(ThreadState *thr, uptr pc, uptr uid, bool detached) { 237 ctx->thread_registry->CreateThread(uid, detached, parent_tid, &args);
|
tsan_rtl.h | 767 int ThreadCreate(ThreadState *thr, uptr pc, uptr uid, bool detached);
|
tsan_interceptors.cc | 1000 int detached = 0; local in function:TSAN_INTERCEPTOR 1001 REAL(pthread_attr_getdetachstate)(attr, &detached); 1017 int tid = ThreadCreate(thr, pc, *(uptr*)th, IsStateDetached(detached));
|