Lines Matching refs:AsanThread
24 AsanThread::AsanThread(LinkerInitialized x) in AsanThread() function in __asan::AsanThread
29 AsanThread *AsanThread::Create(u32 parent_tid, thread_callback_t start_routine, in Create()
31 uptr size = RoundUpTo(sizeof(AsanThread), kPageSize); in Create()
32 AsanThread *thread = (AsanThread*)MmapOrDie(size, __FUNCTION__); in Create()
57 void AsanThread::Destroy() { in Destroy()
69 uptr size = RoundUpTo(sizeof(AsanThread), kPageSize); in Destroy()
73 void AsanThread::Init() { in Init()
88 thread_return_t AsanThread::ThreadStart() { in ThreadStart()
109 void AsanThread::SetThreadStackTopAndBottom() { in SetThreadStackTopAndBottom()
115 void AsanThread::ClearShadowForThreadStack() { in ClearShadowForThreadStack()
119 const char *AsanThread::GetFrameNameByAddr(uptr addr, uptr *offset) { in GetFrameNameByAddr()