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;
486 MemprofStats &thread_stats = GetCurrentThreadStats();
487 thread_stats.mallocs++;
488 thread_stats.malloced += size;
489 thread_stats.malloced_overhead += needed_size - size;
491 thread_stats.malloc_large++;
493 thread_stats.malloced_by_size[SizeClassMap::ClassID(needed_size)]++;
524 MemprofStats &thread_stats = GetCurrentThreadStats();
525 thread_stats.frees++;
526 thread_stats.freed += user_requested_size;
552 MemprofStats &thread_stats = GetCurrentThreadStats();
553 thread_stats.reallocs++;
554 thread_stats.realloced += new_size;