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(int parent_tid, thread_callback_t start_routine,
31 size_t size = RoundUpTo(sizeof(AsanThread), kPageSize);
32 AsanThread *thread = (AsanThread*)AsanMmapSomewhereOrDie(size, __FUNCTION__);
53 void AsanThread::Destroy() {
65 size_t size = RoundUpTo(sizeof(AsanThread), kPageSize);
69 void AsanThread::Init()
    [all...]
asan_thread.h 26 class AsanThread;
52 AsanThread *thread() { return thread_; }
53 void set_thread(AsanThread *thread) { thread_ = thread; }
61 AsanThread *thread_;
64 // AsanThread are stored in TSD and destroyed when the thread dies.
65 class AsanThread {
67 explicit AsanThread(LinkerInitialized); // for T0.
68 static AsanThread *Create(int parent_tid, thread_callback_t start_routine,

Completed in 888 milliseconds