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

References

projects/compiler-rt/lib/lsan/lsan_thread.cpp
   37   thread_registry = new(thread_registry_placeholder)
   75   return thread_registry->CreateThread(user_id, detached, parent_tid,
   89   thread_registry->StartThread(tid, os_id, thread_type, &args);
   93   thread_registry->FinishThread(GetCurrentThread());
   98   if (!thread_registry) return nullptr;
  102   return (ThreadContext *)thread_registry->GetThreadLocked(GetCurrentThread());
  114   return thread_registry->FindThread(FindThreadByUid, (void*)uid);
  119   thread_registry->JoinThread(tid, /* arg */nullptr);
  133       thread_registry->FindThreadContextByOsIDLocked(os_id));
  150   thread_registry->Lock();
  154   thread_registry->Unlock();
  158   thread_registry->CheckLocked();
  159   return thread_registry;