Lines Matching refs:thread_stats
219 AsanStats &thread_stats = GetCurrentThreadStats(); in Recycle() local
220 thread_stats.real_frees++; in Recycle()
221 thread_stats.really_freed += m->UsedSize(); in Recycle()
249 AsanStats &thread_stats = GetCurrentThreadStats(); in OnMap() local
250 thread_stats.mmaps++; in OnMap()
251 thread_stats.mmaped += size; in OnMap()
259 AsanStats &thread_stats = GetCurrentThreadStats(); in OnUnmap() local
260 thread_stats.munmaps++; in OnUnmap()
261 thread_stats.munmaped += size; in OnUnmap()
587 AsanStats &thread_stats = GetCurrentThreadStats(); in Allocate() local
588 thread_stats.mallocs++; in Allocate()
589 thread_stats.malloced += size; in Allocate()
590 thread_stats.malloced_redzones += needed_size - size; in Allocate()
592 thread_stats.malloc_large++; in Allocate()
594 thread_stats.malloced_by_size[SizeClassMap::ClassID(needed_size)]++; in Allocate()
658 AsanStats &thread_stats = GetCurrentThreadStats(); in QuarantineChunk() local
659 thread_stats.frees++; in QuarantineChunk()
660 thread_stats.freed += m->UsedSize(); in QuarantineChunk()
723 AsanStats &thread_stats = GetCurrentThreadStats(); in Reallocate() local
724 thread_stats.reallocs++; in Reallocate()
725 thread_stats.realloced += new_size; in Reallocate()