Home | History | Annotate | Download | only in asan

Lines Matching refs:AsanThread

31   AsanThread *thread;
44 // Drop the link to the AsanThread object.
81 // AsanThread implementation.
83 AsanThread *AsanThread::Create(thread_callback_t start_routine, void *arg,
87 uptr size = RoundUpTo(sizeof(AsanThread), PageSize);
88 AsanThread *thread = (AsanThread*)MmapOrDie(size, __func__);
98 void AsanThread::TSDDtor(void *tsd) {
105 void AsanThread::Destroy() {
118 uptr size = RoundUpTo(sizeof(AsanThread), GetPageSizeCached());
125 FakeStack *AsanThread::AsyncSignalSafeLazyInitFakeStack() {
152 void AsanThread::Init() {
166 thread_return_t AsanThread::ThreadStart(
196 void AsanThread::SetThreadStackAndTls() {
207 void AsanThread::ClearShadowForThreadStackAndTLS() {
213 bool AsanThread::GetStackFrameAccessByAddr(uptr addr,
255 AsanThread *t = tctx->thread;
263 AsanThread *GetCurrentThread() {
284 void SetCurrentThread(AsanThread *t) {
288 // Make sure we do not reset the current AsanThread.
295 AsanThread *t = GetCurrentThread();
299 AsanThread *FindThreadByStackAddress(uptr addr) {
314 __asan::AsanThread *GetAsanThreadByOsIDLocked(uptr os_id) {
327 __asan::AsanThread *t = __asan::GetAsanThreadByOsIDLocked(os_id);
341 __asan::AsanThread *t = __asan::GetAsanThreadByOsIDLocked(os_id);