Lines Matching refs:thread_stats
189 MemprofStats &thread_stats = GetCurrentThreadStats(); in OnMap() local
190 thread_stats.mmaps++; in OnMap()
191 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()
420 MemprofStats &thread_stats = GetCurrentThreadStats(); in Allocate() local
421 thread_stats.mallocs++; in Allocate()
422 thread_stats.malloced += size; in Allocate()
423 thread_stats.malloced_overhead += needed_size - size; in Allocate()
425 thread_stats.malloc_large++; in Allocate()
427 thread_stats.malloced_by_size[SizeClassMap::ClassID(needed_size)]++; in Allocate()
462 MemprofStats &thread_stats = GetCurrentThreadStats(); in Deallocate() local
463 thread_stats.frees++; in Deallocate()
464 thread_stats.freed += user_requested_size; in Deallocate()
490 MemprofStats &thread_stats = GetCurrentThreadStats(); in Reallocate() local
491 thread_stats.reallocs++; in Reallocate()
492 thread_stats.realloced += new_size; in Reallocate()