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() {
44 void MsanThread::Init() {
51 void MsanThread::TSDDtor(void *tsd) {
52 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 185 static THREADLOCAL MsanThread* msan_current_thread;
187 MsanThread *GetCurrentThread() {
191 void SetCurrentThread(MsanThread *t) {
192 // Make sure we do not reset the current MsanThread.
201 MsanThread *t = (MsanThread*)tsd;
210 MsanThread::TSDDtor(tsd);
msan_allocator.cc 117 MsanThread *t = GetCurrentThread();
160 MsanThread *t = GetCurrentThread();
msan.cc 222 MsanThread *t = GetCurrentThread();
298 MsanThread *t = GetCurrentThread();
418 MsanThread *main_thread = MsanThread::Create(nullptr, nullptr);
msan_interceptors.cc     [all...]

Completed in 116 milliseconds