reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
290 MsanThread *t = GetCurrentThread(); 305 MsanThread *t = GetCurrentThread(); 449 MsanThread *main_thread = MsanThread::Create(nullptr, nullptr); 449 MsanThread *main_thread = MsanThread::Create(nullptr, nullptr);projects/compiler-rt/lib/msan/msan_allocator.cpp
142 MsanThread *t = GetCurrentThread(); 191 MsanThread *t = GetCurrentThread();projects/compiler-rt/lib/msan/msan_interceptors.cpp
981 if (MsanThread *t = GetCurrentThread()) 985 if (MsanThread *t = GetCurrentThread()) 1034 MsanThread *t = (MsanThread *)arg; 1050 MsanThread *t = MsanThread::Create(callback, param); 1050 MsanThread *t = MsanThread::Create(callback, param);projects/compiler-rt/lib/msan/msan_linux.cpp
231 static THREADLOCAL MsanThread* msan_current_thread; 233 MsanThread *GetCurrentThread() { 237 void SetCurrentThread(MsanThread *t) { 247 MsanThread *t = (MsanThread*)tsd; 256 MsanThread::TSDDtor(tsd);projects/compiler-rt/lib/msan/msan_thread.cpp
10 MsanThread *MsanThread::Create(thread_callback_t start_routine, 13 uptr size = RoundUpTo(sizeof(MsanThread), PageSize); 14 MsanThread *thread = (MsanThread*)MmapOrDie(size, __func__); 52 MsanThread *t = (MsanThread*)tsd; 62 uptr size = RoundUpTo(sizeof(MsanThread), GetPageSizeCached());projects/compiler-rt/lib/msan/msan_thread.h
23 static MsanThread *Create(thread_callback_t start_routine, void *arg); 65 MsanThread *GetCurrentThread(); 66 void SetCurrentThread(MsanThread *t);