HomeSort by relevance Sort by last modified time
    Searched defs:AsanThread (Results 1 - 2 of 2) sorted by null

  /external/compiler-rt/lib/asan/
asan_thread.cc 24 AsanThread::AsanThread(LinkerInitialized x)
29 AsanThread *AsanThread::Create(u32 parent_tid, thread_callback_t start_routine,
32 uptr size = RoundUpTo(sizeof(AsanThread), PageSize);
33 AsanThread *thread = (AsanThread*)MmapOrDie(size, __FUNCTION__);
58 void AsanThread::Destroy() {
70 uptr size = RoundUpTo(sizeof(AsanThread), GetPageSizeCached());
74 void AsanThread::Init()
    [all...]
asan_thread.h 27 class AsanThread;
50 AsanThread *thread() { return thread_; }
51 void set_thread(AsanThread *thread) { thread_ = thread; }
63 AsanThread *thread_;
70 // AsanThread are stored in TSD and destroyed when the thread dies.
71 class AsanThread {
73 explicit AsanThread(LinkerInitialized); // for T0.
74 static AsanThread *Create(u32 parent_tid, thread_callback_t start_routine,

Completed in 24 milliseconds