Home
last modified time | relevance | path

Searched refs:ThreadStatusInvalid (Results 1 – 4 of 4) sorted by relevance

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_thread_registry.cpp20 status(ThreadStatusInvalid), detached(false), in ThreadContextBase()
94 status = ThreadStatusInvalid; in Reset()
159 CHECK_EQ(tctx->status, ThreadStatusInvalid); in CreateThread()
204 return (tctx->os_id == (uptr)arg && tctx->status != ThreadStatusInvalid && in FindThreadContextByOsIdCallback()
227 tctx->status != ThreadStatusInvalid) { in SetThreadNameByUserId()
238 if (tctx->status == ThreadStatusInvalid) { in DetachThread()
258 if (tctx->status == ThreadStatusInvalid) { in JoinThread()
340 CHECK_NE(tctx->status, ThreadStatusInvalid); in SetThreadUserId()
H A Dsanitizer_thread_registry.h24 ThreadStatusInvalid, // Non-existent thread, data is invalid. enumerator
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_thread.cpp73 if (tctx->user_id == uid && tctx->status != ThreadStatusInvalid) { in FindThreadByUid()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl_thread.cpp290 if (tctx->user_id == findCtx->uid && tctx->status != ThreadStatusInvalid) { in ConsumeThreadByUid()