Lines Matching refs:thread_stats
190 MemprofStats &thread_stats = GetCurrentThreadStats(); in OnMap() local
191 thread_stats.mmaps++; in OnMap()
192 thread_stats.mmaped += size; in OnMap()
199 MemprofStats &thread_stats = GetCurrentThreadStats(); in OnUnmap() local
200 thread_stats.munmaps++; in OnUnmap()
201 thread_stats.munmaped += size; in OnUnmap()
418 MemprofStats &thread_stats = GetCurrentThreadStats(); in Allocate() local
419 thread_stats.mallocs++; in Allocate()
420 thread_stats.malloced += size; in Allocate()
421 thread_stats.malloced_overhead += needed_size - size; in Allocate()
423 thread_stats.malloc_large++; in Allocate()
425 thread_stats.malloced_by_size[SizeClassMap::ClassID(needed_size)]++; in Allocate()
461 MemprofStats &thread_stats = GetCurrentThreadStats(); in Deallocate() local
462 thread_stats.frees++; in Deallocate()
463 thread_stats.freed += user_requested_size; in Deallocate()
489 MemprofStats &thread_stats = GetCurrentThreadStats(); in Reallocate() local
490 thread_stats.reallocs++; in Reallocate()
491 thread_stats.realloced += new_size; in Reallocate()