reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc
 4825   COMMON_INTERCEPTOR_SET_PTHREAD_NAME(ctx, thread, name);
projects/compiler-rt/lib/tsan/rtl/tsan_debugging.cpp
  218       ctx->thread_registry->Lock();
  220       ctx->thread_registry->Unlock();
  255   ThreadContextBase *tctx = ctx->thread_registry->GetThreadLocked(b->tid);
projects/compiler-rt/lib/tsan/rtl/tsan_interceptors_posix.cpp
 1930     ThreadRegistryLock l(ctx->thread_registry);
projects/compiler-rt/lib/tsan/rtl/tsan_mman.cpp
  147   ThreadRegistryLock l(ctx->thread_registry);
projects/compiler-rt/lib/tsan/rtl/tsan_rtl.cpp
  141   ctx->thread_registry->GetNumberOfThreads(&n_threads, &n_running_threads);
  495   ctx->thread_registry->Lock();
  501   ctx->thread_registry->Unlock();
  506   ctx->thread_registry->Unlock();
  509   ctx->thread_registry->GetNumberOfThreads(0, 0, &nthread /* alive threads */);
projects/compiler-rt/lib/tsan/rtl/tsan_rtl_mutex.cpp
   54   ThreadRegistryLock l(ctx->thread_registry);
  111     ThreadRegistryLock l(ctx->thread_registry);
  427   ThreadRegistryLock l(ctx->thread_registry);
  428   ctx->thread_registry->RunCallbackForEachThreadLocked(
  471   ThreadRegistryLock l(ctx->thread_registry);
  472   ctx->thread_registry->RunCallbackForEachThreadLocked(
  516   ThreadRegistryLock l(ctx->thread_registry);
projects/compiler-rt/lib/tsan/rtl/tsan_rtl_report.cpp
  146   ctx->thread_registry->CheckLocked();
  219   ctx->thread_registry->CheckLocked();
  221       ctx->thread_registry->FindThreadContextLocked(
  226   ctx->thread_registry->CheckLocked();
  228       ctx->thread_registry->GetThreadLocked(tid));
  243   ctx->thread_registry->CheckLocked();
  245       ctx->thread_registry->FindThreadContextLocked(IsInStackOrTls,
  684   ThreadRegistryLock l0(ctx->thread_registry);
  695         ctx->thread_registry->GetThreadLocked(s.tid()));
projects/compiler-rt/lib/tsan/rtl/tsan_rtl_thread.cpp
  212   ThreadRegistryLock l(ctx->thread_registry);
  214   ctx->thread_registry->RunCallbackForEachThreadLocked(
  227   ctx->thread_registry->GetNumberOfThreads(0, 0, &result);
  236       ctx->thread_registry->CreateThread(uid, detached, parent_tid, &args);
  238   StatSet(thr, StatThreadMaxAlive, ctx->thread_registry->GetMaxAliveThreads());
  260   ThreadRegistry *tr = ctx->thread_registry;
  285   ctx->thread_registry->FinishThread(thr->tid);
  298   int res = ctx->thread_registry->FindThread(FindThreadByUid, (void*)uid);
  307   ctx->thread_registry->JoinThread(tid, thr);
  313   ctx->thread_registry->DetachThread(tid, thr);
  319   ctx->thread_registry->SetThreadUserId(tid, uid);
  323   ctx->thread_registry->SetThreadName(thr->tid, name);