HomeSort by relevance Sort by last modified time
    Searched refs:thread_registry (Results 1 - 8 of 8) sorted by null

  /external/compiler-rt/lib/lsan/
lsan_thread.cc 26 static ThreadRegistry *thread_registry; member in namespace:__lsan
39 thread_registry = new(thread_registry_placeholder)
81 return thread_registry->CreateThread(user_id, detached, parent_tid,
94 thread_registry->StartThread(tid, os_id, &args);
98 thread_registry->FinishThread(GetCurrentThread());
102 if (!thread_registry) return nullptr;
106 return (ThreadContext *)thread_registry->GetThreadLocked(GetCurrentThread());
118 return thread_registry->FindThread(FindThreadByUid, (void*)uid);
123 thread_registry->JoinThread(tid, /* arg */nullptr);
137 thread_registry->FindThreadContextByOsIDLocked(os_id))
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl_thread.cc 214 ThreadRegistryLock l(ctx->thread_registry);
216 ctx->thread_registry->RunCallbackForEachThreadLocked(
229 ctx->thread_registry->GetNumberOfThreads(0, 0, &result);
238 ctx->thread_registry->CreateThread(uid, detached, parent_tid, &args);
240 StatSet(thr, StatThreadMaxAlive, ctx->thread_registry->GetMaxAliveThreads());
272 ThreadRegistry *tr = ctx->thread_registry;
297 ctx->thread_registry->FinishThread(thr->tid);
310 int res = ctx->thread_registry->FindThread(FindThreadByUid, (void*)uid);
319 ctx->thread_registry->JoinThread(tid, thr);
325 ctx->thread_registry->DetachThread(tid, thr)
    [all...]
tsan_rtl_report.cc 138 ctx->thread_registry->CheckLocked();
209 ctx->thread_registry->CheckLocked();
211 ctx->thread_registry->FindThreadContextLocked(
216 ctx->thread_registry->CheckLocked();
218 ctx->thread_registry->GetThreadLocked(tid));
233 ctx->thread_registry->CheckLocked();
235 ctx->thread_registry->FindThreadContextLocked(IsInStackOrTls,
634 ThreadRegistryLock l0(ctx->thread_registry);
644 ctx->thread_registry->GetThreadLocked(s.tid()));
tsan_rtl_mutex.cc 55 ThreadRegistryLock l(ctx->thread_registry);
120 ThreadRegistryLock l(ctx->thread_registry);
375 ThreadRegistryLock l(ctx->thread_registry);
376 ctx->thread_registry->RunCallbackForEachThreadLocked(
419 ThreadRegistryLock l(ctx->thread_registry);
420 ctx->thread_registry->RunCallbackForEachThreadLocked(
464 ThreadRegistryLock l(ctx->thread_registry);
tsan_rtl.cc 100 , thread_registry(new(thread_registry_placeholder) ThreadRegistry(
139 ctx->thread_registry->GetNumberOfThreads(&n_threads, &n_running_threads);
431 ctx->thread_registry->Lock();
437 ctx->thread_registry->Unlock();
442 ctx->thread_registry->Unlock();
445 ctx->thread_registry->GetNumberOfThreads(0, 0, &nthread /* alive threads */);
tsan_mman.cc 92 ThreadRegistryLock l(ctx->thread_registry);
tsan_rtl.h 488 ThreadRegistry *thread_registry; member in struct:__tsan::Context
tsan_interceptors.cc     [all...]

Completed in 119 milliseconds