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

References

projects/compiler-rt/lib/asan/asan_thread.cpp
  248   asanThreadRegistry().StartThread(tid(), os_id, ThreadType::Regular, nullptr);
projects/compiler-rt/lib/lsan/lsan_thread.cpp
   79 void ThreadStart(u32 tid, tid_t os_id, ThreadType thread_type) {
projects/compiler-rt/lib/lsan/lsan_thread.h
   48                  ThreadType thread_type = ThreadType::Regular);
   48                  ThreadType thread_type = ThreadType::Regular);
projects/compiler-rt/lib/sanitizer_common/sanitizer_thread_registry.cpp
   21       thread_type(ThreadType::Regular), parent_tid(0), next(0) {
   73 void ThreadContextBase::SetStarted(tid_t _os_id, ThreadType _thread_type,
  305 void ThreadRegistry::StartThread(u32 tid, tid_t os_id, ThreadType thread_type,
projects/compiler-rt/lib/sanitizer_common/sanitizer_thread_registry.h
   53   ThreadType thread_type;
   65   void SetStarted(tid_t _os_id, ThreadType _thread_type, void *arg);
  129   void StartThread(u32 tid, tid_t os_id, ThreadType thread_type, void *arg);
projects/compiler-rt/lib/tsan/rtl/tsan_interceptors_posix.cpp
  949     ThreadStart(thr, tid, GetTid(), ThreadType::Regular);
projects/compiler-rt/lib/tsan/rtl/tsan_report.cpp
  260   if (rt->thread_type == ThreadType::Worker) {
projects/compiler-rt/lib/tsan/rtl/tsan_report.h
   95   ThreadType thread_type;
projects/compiler-rt/lib/tsan/rtl/tsan_rtl.cpp
  407   ThreadStart(thr, tid, GetTid(), ThreadType::Regular);
projects/compiler-rt/lib/tsan/rtl/tsan_rtl.h
  776                  ThreadType thread_type);
projects/compiler-rt/lib/tsan/rtl/tsan_rtl_thread.cpp
  243                  ThreadType thread_type) {
  249   if (thread_type != ThreadType::Fiber)
  422   ThreadStart(fiber, tid, 0, ThreadType::Fiber);