HomeSort by: relevance | last modified time | path
    Searched refs:ThreadRegistry (Results 1 - 10 of 10) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_thread_registry.cc 66 // ThreadRegistry::FinishThread calls here in ThreadStatusCreated state
101 // ThreadRegistry implementation.
103 const u32 ThreadRegistry::kUnknownTid = ~0U;
105 ThreadRegistry::ThreadRegistry(ThreadContextFactory factory, u32 max_threads,
118 "ThreadRegistry");
123 void ThreadRegistry::GetNumberOfThreads(uptr *total, uptr *running,
131 uptr ThreadRegistry::GetMaxAliveThreads() {
136 u32 ThreadRegistry::CreateThread(uptr user_id, bool detached, u32 parent_tid,
172 void ThreadRegistry::RunCallbackForEachThreadLocked(ThreadCallback cb
    [all...]
sanitizer_thread_registry.h 82 class ThreadRegistry {
86 ThreadRegistry(ThreadContextFactory factory, u32 max_threads,
151 typedef GenericScopedLock<ThreadRegistry> ThreadRegistryLock;
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_thread_registry_test.cc 35 static void CheckThreadQuantity(ThreadRegistry *registry, uptr exp_total,
67 static void TestRegistry(ThreadRegistry *registry, bool has_quarantine) {
102 EXPECT_EQ(ThreadRegistry::kUnknownTid,
106 EXPECT_EQ(ThreadRegistry::kUnknownTid,
141 ThreadRegistry quarantine_registry(GetThreadContext<ThreadContextBase>,
146 ThreadRegistry no_quarantine_registry(GetThreadContext<ThreadContextBase>,
162 ThreadRegistry *registry;
200 static void ThreadedTestRegistry(ThreadRegistry *registry) {
231 ThreadRegistry registry(GetThreadContext<TestThreadContext>,
  /src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan_thread.cc 26 static ThreadRegistry *thread_registry;
37 static ALIGNED(64) char thread_registry_placeholder[sizeof(ThreadRegistry)];
39 ThreadRegistry(CreateThreadContext, kMaxThreads, kThreadQuarantineSize);
158 ThreadRegistry *GetThreadRegistryLocked() {
lsan_common.h 50 class ThreadRegistry;
205 // Wrappers for ThreadRegistry access.
208 ThreadRegistry *GetThreadRegistryLocked();
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_thread.cc 44 static ALIGNED(16) char thread_registry_placeholder[sizeof(ThreadRegistry)];
45 static ThreadRegistry *asan_thread_registry;
55 ThreadRegistry &asanThreadRegistry() {
64 asan_thread_registry = new(thread_registry_placeholder) ThreadRegistry(
499 ThreadRegistry *GetThreadRegistryLocked() {
asan_thread.h 184 ThreadRegistry &asanThreadRegistry();
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_rtl_thread.cc 259 ThreadRegistry *tr = ctx->thread_registry;
tsan_rtl.cc 68 static char thread_registry_placeholder[sizeof(ThreadRegistry)];
102 , thread_registry(new(thread_registry_placeholder) ThreadRegistry(
tsan_rtl.h 539 ThreadRegistry *thread_registry;

Completed in 15 milliseconds