Lines Matching defs:thread_stats
248 AsanStats &thread_stats = GetCurrentThreadStats();
249 thread_stats.real_frees++;
250 thread_stats.really_freed += m->UsedSize();
286 AsanStats &thread_stats = GetCurrentThreadStats();
287 thread_stats.mmaps++;
288 thread_stats.mmaped += size;
301 AsanStats &thread_stats = GetCurrentThreadStats();
302 thread_stats.mmaps++;
303 thread_stats.mmaped += size;
312 AsanStats &thread_stats = GetCurrentThreadStats();
313 thread_stats.munmaps++;
314 thread_stats.munmaped += size;
635 AsanStats &thread_stats = GetCurrentThreadStats();
636 thread_stats.mallocs++;
637 thread_stats.malloced += size;
638 thread_stats.malloced_redzones += needed_size - size;
640 thread_stats.malloc_large++;
642 thread_stats.malloced_by_size[SizeClassMap::ClassID(needed_size)]++;
751 AsanStats &thread_stats = GetCurrentThreadStats();
752 thread_stats.frees++;
753 thread_stats.freed += m->UsedSize();
764 AsanStats &thread_stats = GetCurrentThreadStats();
765 thread_stats.reallocs++;
766 thread_stats.realloced += new_size;