Lines Matching refs:thread_stats
150 MemprofStats &thread_stats = GetCurrentThreadStats(); in OnMap() local
151 thread_stats.mmaps++; in OnMap()
152 thread_stats.mmaped += size; in OnMap()
159 MemprofStats &thread_stats = GetCurrentThreadStats(); in OnUnmap() local
160 thread_stats.munmaps++; in OnUnmap()
161 thread_stats.munmaped += size; in OnUnmap()
592 MemprofStats &thread_stats = GetCurrentThreadStats(); in Allocate() local
593 thread_stats.mallocs++; in Allocate()
594 thread_stats.malloced += size; in Allocate()
595 thread_stats.malloced_overhead += needed_size - size; in Allocate()
597 thread_stats.malloc_large++; in Allocate()
599 thread_stats.malloced_by_size[SizeClassMap::ClassID(needed_size)]++; in Allocate()
637 MemprofStats &thread_stats = GetCurrentThreadStats(); in Deallocate() local
638 thread_stats.frees++; in Deallocate()
639 thread_stats.freed += user_requested_size; in Deallocate()
665 MemprofStats &thread_stats = GetCurrentThreadStats(); in Reallocate() local
666 thread_stats.reallocs++; in Reallocate()
667 thread_stats.realloced += new_size; in Reallocate()