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

  /external/compiler-rt/lib/asan/
asan_stats.cc 60 asanThreadRegistry().GetAccumulatedStats(&stats);
76 return asanThreadRegistry().GetCurrentAllocatedBytes();
80 return asanThreadRegistry().GetHeapSize();
84 return asanThreadRegistry().GetFreeBytes();
asan_thread_registry.h 27 // of AsanThreadRegistry for the whole program.
28 // AsanThreadRegistry is thread-safe.
29 class AsanThreadRegistry {
31 explicit AsanThreadRegistry(LinkerInitialized);
81 AsanThreadRegistry &asanThreadRegistry();
asan_report.cc 240 AsanThread *t = asanThreadRegistry().FindThreadByStackAddress(addr);
332 AsanThreadSummary *t = asanThreadRegistry().FindByTid(tid);
342 asanThreadRegistry().FindByTid(chunk.AllocTid());
345 AsanThread *t = asanThreadRegistry().GetCurrent();
351 asanThreadRegistry().FindByTid(chunk.FreeTid());
411 asanThreadRegistry().FindByTid(summary->parent_tid());
431 u32 current_tid = asanThreadRegistry().GetCurrentTidOrInvalid();
443 reporting_thread_tid = asanThreadRegistry().GetCurrentTidOrInvalid();
449 AsanThread *curr_thread = asanThreadRegistry().GetCurrent();
457 AsanThread *curr_thread = asanThreadRegistry().GetCurrent()
    [all...]
asan_mac.cc 239 if (AsanThread *t = asanThreadRegistry().GetCurrent())
293 AsanThread *t = asanThreadRegistry().GetCurrent();
296 asanThreadRegistry().RegisterThread(t);
298 asanThreadRegistry().SetCurrent(t);
332 asan_ctxt->parent_tid = asanThreadRegistry().GetCurrentTidOrInvalid();
398 int parent_tid = asanThreadRegistry().GetCurrentTidOrInvalid(); \
asan_interceptors.cc 92 AsanThread *t = asanThreadRegistry().GetCurrent();
118 asanThreadRegistry().SetCurrent(t);
126 u32 current_tid = asanThreadRegistry().GetCurrentTidOrInvalid();
128 asanThreadRegistry().RegisterThread(t);
664 u32 current_tid = asanThreadRegistry().GetCurrentTidOrInvalid();
666 asanThreadRegistry().RegisterThread(t);
asan_posix.cc 75 asanThreadRegistry().GetCurrentTidOrInvalid(),
asan_thread.cc 63 asanThreadRegistry().UnregisterThread(this);
asan_allocator2.cc 37 AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats();
52 AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats();
277 AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats();
339 AsanThread *t = asanThreadRegistry().GetCurrent();
404 AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats();
441 AsanThread *t = asanThreadRegistry().GetCurrent();
455 AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats();
479 AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats();
asan_allocator.cc 430 AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats();
457 AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats();
532 AsanThread *t = asanThreadRegistry().GetCurrent();
533 AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats();
622 AsanThread *t = asanThreadRegistry().GetCurrent();
630 AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats();
654 AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats();
asan_rtl.cc 404 AsanThread *curr_thread = asanThreadRegistry().GetCurrent();
520 asanThreadRegistry().Init();
521 asanThreadRegistry().GetMain()->ThreadStart();
asan_linux.cc 117 if (AsanThread *t = asanThreadRegistry().GetCurrent())
asan_thread_registry.cc 12 // AsanThreadRegistry-related code. AsanThreadRegistry is a container
23 static AsanThreadRegistry asan_thread_registry(LINKER_INITIALIZED);
25 AsanThreadRegistry &asanThreadRegistry() {
29 AsanThreadRegistry::AsanThreadRegistry(LinkerInitialized x)
36 void AsanThreadRegistry::Init() {
46 void AsanThreadRegistry::RegisterThread(AsanThread *thread) {
58 void AsanThreadRegistry::UnregisterThread(AsanThread *thread)
    [all...]
asan_fake_stack.cc 106 // asanThreadRegistry().GetCurrent()->tid(),
166 AsanThread *t = asanThreadRegistry().GetCurrent();
asan_malloc_mac.cc 287 asanThreadRegistry().FillMallocStatistics(&malloc_stats);

Completed in 195 milliseconds