Searched refs:AsanThread (Results 1 - 13 of 13) sorted by relevance

/external/compiler-rt/lib/asan/
H A Dasan_thread.h30 class AsanThread;
46 AsanThread *thread;
55 // AsanThread are stored in TSD and destroyed when the thread dies.
56 class AsanThread { class in namespace:__asan
58 static AsanThread *Create(thread_callback_t start_routine, void *arg);
110 // NOTE: There is no AsanThread constructor. It is allocated
136 explicit ScopedUnwinding(AsanThread *t) : thread(t) {
142 AsanThread *thread;
146 AsanThread *thread;
157 AsanThread *GetCurrentThrea
[all...]
H A Dasan_thread.cc39 // Drop the link to the AsanThread object.
76 // AsanThread implementation.
78 AsanThread *AsanThread::Create(thread_callback_t start_routine,
81 uptr size = RoundUpTo(sizeof(AsanThread), PageSize);
82 AsanThread *thread = (AsanThread*)MmapOrDie(size, __func__);
89 void AsanThread::TSDDtor(void *tsd) {
96 void AsanThread::Destroy() {
109 uptr size = RoundUpTo(sizeof(AsanThread), GetPageSizeCache
[all...]
H A Dasan_win.cc59 AsanThread::TSDDtor(tsd);
H A Dasan_posix.cc83 AsanThread::TSDDtor(tsd);
H A Dasan_stats.cc82 if (AsanThread *t = tctx->thread)
122 AsanThread *t = GetCurrentThread();
H A Dasan_internal.h66 class AsanThread;
H A Dasan_stack.h33 AsanThread *t;
H A Dasan_interceptors.cc87 AsanThread *t = GetCurrentThread();
168 AsanThread *t = (AsanThread*)arg;
186 AsanThread *t = AsanThread::Create(start_routine, arg);
720 AsanThread *t = AsanThread::Create(start_routine, arg);
H A Dasan_mac.cc265 AsanThread *t = GetCurrentThread();
267 t = AsanThread::Create(0, 0);
H A Dasan_rtl.cc660 // On Linux AsanThread::ThreadStart() calls malloc() that's why asan_inited
677 AsanThread *main_thread = AsanThread::Create(0, 0);
740 AsanThread *curr_thread = GetCurrentThread();
H A Dasan_fake_stack.cc180 AsanThread *t = GetCurrentThread();
H A Dasan_allocator2.cc321 AsanThread *t = GetCurrentThread();
441 AsanThread *t = GetCurrentThread();
H A Dasan_report.cc180 static void DescribeThread(AsanThread *t) {
352 AsanThread *t = FindThreadByStackAddress(addr);

Completed in 571 milliseconds