Home | History | Annotate | Download | only in asan

Lines Matching refs:thread_stats

37     AsanStats &thread_stats = GetCurrentThreadStats();
38 thread_stats.mmaps++;
39 thread_stats.mmaped += size;
52 AsanStats &thread_stats = GetCurrentThreadStats();
53 thread_stats.munmaps++;
54 thread_stats.munmaped += size;
290 AsanStats &thread_stats = GetCurrentThreadStats();
291 thread_stats.real_frees++;
292 thread_stats.really_freed += m->UsedSize();
412 AsanStats &thread_stats = GetCurrentThreadStats();
413 thread_stats.mallocs++;
414 thread_stats.malloced += size;
415 thread_stats.malloced_redzones += needed_size - size;
417 thread_stats.malloced_by_size[class_id]++;
419 thread_stats.malloc_large++;
479 AsanStats &thread_stats = GetCurrentThreadStats();
480 thread_stats.frees++;
481 thread_stats.freed += m->UsedSize();
515 AsanStats &thread_stats = GetCurrentThreadStats();
516 thread_stats.reallocs++;
517 thread_stats.realloced += new_size;