Lines Matching refs:thread_stats
247 AsanStats &thread_stats = GetCurrentThreadStats(); in Recycle() local
248 thread_stats.real_frees++; in Recycle()
249 thread_stats.really_freed += m->UsedSize(); in Recycle()
285 AsanStats &thread_stats = GetCurrentThreadStats(); in OnMap() local
286 thread_stats.mmaps++; in OnMap()
287 thread_stats.mmaped += size; in OnMap()
300 AsanStats &thread_stats = GetCurrentThreadStats(); in OnMapSecondary() local
301 thread_stats.mmaps++; in OnMapSecondary()
302 thread_stats.mmaped += size; in OnMapSecondary()
311 AsanStats &thread_stats = GetCurrentThreadStats(); in OnUnmap() local
312 thread_stats.munmaps++; in OnUnmap()
313 thread_stats.munmaped += size; in OnUnmap()
634 AsanStats &thread_stats = GetCurrentThreadStats(); in Allocate() local
635 thread_stats.mallocs++; in Allocate()
636 thread_stats.malloced += size; in Allocate()
637 thread_stats.malloced_redzones += needed_size - size; in Allocate()
639 thread_stats.malloc_large++; in Allocate()
641 thread_stats.malloced_by_size[SizeClassMap::ClassID(needed_size)]++; in Allocate()
741 AsanStats &thread_stats = GetCurrentThreadStats(); in Deallocate() local
742 thread_stats.frees++; in Deallocate()
743 thread_stats.freed += m->UsedSize(); in Deallocate()
754 AsanStats &thread_stats = GetCurrentThreadStats(); in Reallocate() local
755 thread_stats.reallocs++; in Reallocate()
756 thread_stats.realloced += new_size; in Reallocate()