Searched defs:AsanThread (Results 1 - 2 of 2) sorted by relevance

/external/compiler-rt/lib/asan/
H A Dasan_thread.cc24 AsanThread::AsanThread(LinkerInitialized x) function in class:__asan::AsanThread
29 AsanThread *AsanThread::Create(u32 parent_tid, thread_callback_t start_routine,
31 uptr size = RoundUpTo(sizeof(AsanThread), kPageSize);
32 AsanThread *thread = (AsanThread*)MmapOrDie(size, __FUNCTION__);
57 void AsanThread::Destroy() {
69 uptr size = RoundUpTo(sizeof(AsanThread), kPageSize);
73 void AsanThread
[all...]
H A Dasan_thread.h27 class AsanThread;
49 AsanThread *thread() { return thread_; }
50 void set_thread(AsanThread *thread) { thread_ = thread; }
58 AsanThread *thread_;
61 // AsanThread are stored in TSD and destroyed when the thread dies.
62 class AsanThread { class in namespace:__asan
64 explicit AsanThread(LinkerInitialized); // for T0.
65 static AsanThread *Create(u32 parent_tid, thread_callback_t start_routine,

Completed in 293 milliseconds