Lines Matching defs:thread_stats
247 AsanStats &thread_stats = GetCurrentThreadStats();
248 thread_stats.real_frees++;
249 thread_stats.really_freed += m->UsedSize();
285 AsanStats &thread_stats = GetCurrentThreadStats();
286 thread_stats.mmaps++;
287 thread_stats.mmaped += size;
300 AsanStats &thread_stats = GetCurrentThreadStats();
301 thread_stats.mmaps++;
302 thread_stats.mmaped += size;
311 AsanStats &thread_stats = GetCurrentThreadStats();
312 thread_stats.munmaps++;
313 thread_stats.munmaped += size;
634 AsanStats &thread_stats = GetCurrentThreadStats();
635 thread_stats.mallocs++;
636 thread_stats.malloced += size;
637 thread_stats.malloced_redzones += needed_size - size;
639 thread_stats.malloc_large++;
641 thread_stats.malloced_by_size[SizeClassMap::ClassID(needed_size)]++;
749 AsanStats &thread_stats = GetCurrentThreadStats();
750 thread_stats.frees++;
751 thread_stats.freed += m->UsedSize();
762 AsanStats &thread_stats = GetCurrentThreadStats();
763 thread_stats.reallocs++;
764 thread_stats.realloced += new_size;