HomeSort by: relevance | last modified time | path
    Searched refs:MsanThread (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/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 192 MsanThread *key;
202 MsanThread *GetCurrentThread() {
207 void SetCurrentThread(MsanThread *tsd) {
220 MsanThread::TSDDtor(tsd);
232 static THREADLOCAL MsanThread* msan_current_thread;
234 MsanThread *GetCurrentThread() {
238 void SetCurrentThread(MsanThread *t) {
239 // Make sure we do not reset the current MsanThread.
248 MsanThread *t = (MsanThread*)tsd
    [all...]
msan.cc 227 MsanThread *t = GetCurrentThread();
305 MsanThread *t = GetCurrentThread();
449 MsanThread *main_thread = MsanThread::Create(nullptr, nullptr);
msan_allocator.cc 153 MsanThread *t = GetCurrentThread();
202 MsanThread *t = GetCurrentThread();
msan_interceptors.cc 968 if (MsanThread *t = GetCurrentThread())
972 if (MsanThread *t = GetCurrentThread())
1021 MsanThread *t = (MsanThread *)arg;
1037 MsanThread *t = MsanThread::Create(callback, param);
1301 if (MsanThread *t = GetCurrentThread()) { \

Completed in 14 milliseconds