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

  /external/compiler-rt/lib/asan/
asan_thread.h 31 class AsanThread;
44 AsanThread *thread;
53 // AsanThread are stored in TSD and destroyed when the thread dies.
54 class AsanThread {
56 static AsanThread *Create(thread_callback_t start_routine, void *arg,
119 // NOTE: There is no AsanThread constructor. It is allocated
146 explicit ScopedUnwinding(AsanThread *t) : thread(t) {
152 AsanThread *thread;
158 explicit ScopedDeadlySignal(AsanThread *t) : thread(t) {
166 AsanThread *thread
    [all...]
asan_thread.cc 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()
    [all...]
asan_win.cc 81 AsanThread *t = (AsanThread*)arg;
98 AsanThread *t =
99 AsanThread::Create(start_routine, arg, current_tid, &stack, detached);
116 AsanThread *t = AsanThread::Create(
173 AsanThread::TSDDtor(tsd);
asan_debugging.cc 25 void GetInfoForStackVar(uptr addr, AddressDescription *descr, AsanThread *t) {
31 AsanThread::StackFrameAccess access;
75 AsanThread *thread = FindThreadByStackAddress(addr);
asan_internal.h 60 class AsanThread;
asan_mac.cc 112 AsanThread *t = GetCurrentThread();
114 t = AsanThread::Create(/* start_routine */ nullptr, /* arg */ nullptr,
asan_stats.cc 78 if (AsanThread *t = tctx->thread)
118 AsanThread *t = GetCurrentThread();
asan_posix.cc 113 AsanThread::TSDDtor(tsd);
asan_stack.h 40 AsanThread *t;
asan_rtl.cc 513 // On Linux AsanThread::ThreadStart() calls malloc() that's why asan_inited
532 AsanThread *main_thread = AsanThread::Create(
585 AsanThread *curr_thread = GetCurrentThread();
asan_interceptors.cc 122 AsanThread *t = GetCurrentThread();
192 if (AsanThread *t = GetCurrentThread()) { \
223 AsanThread *t = nullptr;
224 while ((t = reinterpret_cast<AsanThread *>(
248 AsanThread *t =
249 AsanThread::Create(start_routine, arg, current_tid, &stack, detached);
251 // Wait until the AsanThread object is initialized and the ThreadRegistry
asan_fake_stack.cc 189 AsanThread *t = GetCurrentThread();
asan_report.cc 236 static void DescribeThread(AsanThread *t) {
449 AsanThread *t = FindThreadByStackAddress(addr);
459 AsanThread::StackFrameAccess access;
    [all...]
asan_allocator.cc 362 AsanThread *t = GetCurrentThread();
486 AsanThread *t = GetCurrentThread();

Completed in 106 milliseconds