Home | History | Annotate | Download | only in asan

Lines Matching defs:AsanThread

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() {
89 thread_return_t AsanThread::ThreadStart() {
110 void AsanThread::SetThreadStackTopAndBottom() {
116 void AsanThread::ClearShadowForThreadStack() {
120 const char *AsanThread::GetFrameNameByAddr(uptr addr, uptr *offset) {