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

  /external/compiler-rt/lib/msan/
msan_thread.cc 10 MsanThread *MsanThread::Create(thread_callback_t start_routine,
13 uptr size = RoundUpTo(sizeof(MsanThread), PageSize);
14 MsanThread *thread = (MsanThread*)MmapOrDie(size, __func__);
22 void MsanThread::SetThreadStackAndTls() {
34 void MsanThread::ClearShadowForThreadStackAndTLS() {
43 void MsanThread::Init() {
50 void MsanThread::TSDDtor(void *tsd) {
51 MsanThread *t = (MsanThread*)tsd
    [all...]
msan_thread.h 22 class MsanThread {
24 static MsanThread *Create(thread_callback_t start_routine, void *arg);
50 // NOTE: There is no MsanThread constructor. It is allocated
66 MsanThread *GetCurrentThread();
67 void SetCurrentThread(MsanThread *t);
msan_linux.cc 126 MsanThread *t = (MsanThread*)tsd;
132 MsanThread::TSDDtor(tsd);
msan_allocator.cc 87 MsanThread *t = GetCurrentThread();
135 MsanThread *t = GetCurrentThread();
msan.cc 192 MsanThread *t = GetCurrentThread();
268 MsanThread *t = GetCurrentThread();
409 MsanThread *main_thread = MsanThread::Create(0, 0);
msan_interceptors.cc 956 if (MsanThread *t = GetCurrentThread())
960 if (MsanThread *t = GetCurrentThread())
    [all...]

Completed in 61 milliseconds