Lines Matching refs:thread_stats
217 AsanStats &thread_stats = GetCurrentThreadStats(); in Recycle() local
218 thread_stats.real_frees++; in Recycle()
219 thread_stats.really_freed += m->UsedSize(); in Recycle()
247 AsanStats &thread_stats = GetCurrentThreadStats(); in OnMap() local
248 thread_stats.mmaps++; in OnMap()
249 thread_stats.mmaped += size; in OnMap()
257 AsanStats &thread_stats = GetCurrentThreadStats(); in OnUnmap() local
258 thread_stats.munmaps++; in OnUnmap()
259 thread_stats.munmaped += size; in OnUnmap()
576 AsanStats &thread_stats = GetCurrentThreadStats(); in Allocate() local
577 thread_stats.mallocs++; in Allocate()
578 thread_stats.malloced += size; in Allocate()
579 thread_stats.malloced_redzones += needed_size - size; in Allocate()
581 thread_stats.malloc_large++; in Allocate()
583 thread_stats.malloced_by_size[SizeClassMap::ClassID(needed_size)]++; in Allocate()
646 AsanStats &thread_stats = GetCurrentThreadStats(); in QuarantineChunk() local
647 thread_stats.frees++; in QuarantineChunk()
648 thread_stats.freed += m->UsedSize(); in QuarantineChunk()
711 AsanStats &thread_stats = GetCurrentThreadStats(); in Reallocate() local
712 thread_stats.reallocs++; in Reallocate()
713 thread_stats.realloced += new_size; in Reallocate()