Lines Matching defs:thread_stats
201 MemprofStats &thread_stats = GetCurrentThreadStats();
202 thread_stats.mmaps++;
203 thread_stats.mmaped += size;
211 MemprofStats &thread_stats = GetCurrentThreadStats();
212 thread_stats.munmaps++;
213 thread_stats.munmaped += size;
487 MemprofStats &thread_stats = GetCurrentThreadStats();
488 thread_stats.mallocs++;
489 thread_stats.malloced += size;
490 thread_stats.malloced_overhead += needed_size - size;
492 thread_stats.malloc_large++;
494 thread_stats.malloced_by_size[SizeClassMap::ClassID(needed_size)]++;
525 MemprofStats &thread_stats = GetCurrentThreadStats();
526 thread_stats.frees++;
527 thread_stats.freed += user_requested_size;
553 MemprofStats &thread_stats = GetCurrentThreadStats();
554 thread_stats.reallocs++;
555 thread_stats.realloced += new_size;