Home
last modified time | relevance | path

Searched refs:ThreadRegistry (Results 1 – 10 of 10) sorted by relevance

/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_thread_registry.cpp104 ThreadRegistry::ThreadRegistry(ThreadContextFactory factory) in ThreadRegistry() function in __sanitizer::ThreadRegistry
105 : ThreadRegistry(factory, UINT32_MAX, UINT32_MAX, 0) {} in ThreadRegistry()
107 ThreadRegistry::ThreadRegistry(ThreadContextFactory factory, u32 max_threads, in ThreadRegistry() function in __sanitizer::ThreadRegistry
131 uptr ThreadRegistry::GetMaxAliveThreads() { in GetMaxAliveThreads()
236 void ThreadRegistry::DetachThread(u32 tid, void *arg) { in DetachThread()
255 void ThreadRegistry::JoinThread(u32 tid, void *arg) { in JoinThread()
283 ThreadStatus ThreadRegistry::FinishThread(u32 tid) { in FinishThread()
336 ThreadContextBase *ThreadRegistry::QuarantinePop() { in QuarantinePop()
344 u32 ThreadRegistry::ConsumeThreadUserId(uptr user_id) { in ConsumeThreadUserId()
357 void ThreadRegistry::SetThreadUserId(u32 tid, uptr user_id) { in SetThreadUserId()
[all …]
H A Dsanitizer_thread_registry.h89 class SANITIZER_MUTEX ThreadRegistry {
91 ThreadRegistry(ThreadContextFactory factory);
92 ThreadRegistry(ThreadContextFactory factory, u32 max_threads,
164 typedef GenericScopedLock<ThreadRegistry> ThreadRegistryLock;
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_thread.cpp26 static ThreadRegistry *thread_registry;
39 ThreadRegistry)) char thread_registry_placeholder[sizeof(ThreadRegistry)]; in InitializeThreads()
41 new (thread_registry_placeholder) ThreadRegistry(CreateThreadContext); in InitializeThreads()
96 ThreadRegistry *GetLsanThreadRegistryLocked() { in GetLsanThreadRegistryLocked()
H A Dlsan_thread.h50 ThreadRegistry *GetLsanThreadRegistryLocked();
H A Dlsan_common.h59 class ThreadRegistry; variable
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_thread.cpp40 static ALIGNED(16) char thread_registry_placeholder[sizeof(ThreadRegistry)];
41 static ThreadRegistry *memprof_thread_registry;
51 ThreadRegistry &memprofThreadRegistry() { in memprofThreadRegistry()
61 ThreadRegistry(GetMemprofThreadContext); in memprofThreadRegistry()
H A Dmemprof_thread.h121 ThreadRegistry &memprofThreadRegistry();
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_thread.cpp43 static ThreadRegistry *asan_thread_registry;
66 ThreadRegistry)) char thread_registry_placeholder[sizeof(ThreadRegistry)]; in InitThreads()
71 new (thread_registry_placeholder) ThreadRegistry(GetAsanThreadContext); in InitThreads()
76 ThreadRegistry &asanThreadRegistry() { in asanThreadRegistry()
493 static ThreadRegistry *GetAsanThreadRegistryLocked() { in GetAsanThreadRegistryLocked()
H A Dasan_thread.h200 ThreadRegistry &asanThreadRegistry();
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl.h317 ThreadRegistry thread_registry;