Lines Matching refs:thread_stats
155 AsanStats &thread_stats = GetCurrentThreadStats(); in Recycle() local
156 thread_stats.real_frees++; in Recycle()
157 thread_stats.really_freed += m->UsedSize(); in Recycle()
179 AsanStats &thread_stats = GetCurrentThreadStats(); in OnMap() local
180 thread_stats.mmaps++; in OnMap()
181 thread_stats.mmaped += size; in OnMap()
189 AsanStats &thread_stats = GetCurrentThreadStats(); in OnUnmap() local
190 thread_stats.munmaps++; in OnUnmap()
191 thread_stats.munmaped += size; in OnUnmap()
436 AsanStats &thread_stats = GetCurrentThreadStats(); in Allocate() local
437 thread_stats.mallocs++; in Allocate()
438 thread_stats.malloced += size; in Allocate()
439 thread_stats.malloced_redzones += needed_size - size; in Allocate()
441 thread_stats.malloc_large++; in Allocate()
443 thread_stats.malloced_by_size[SizeClassMap::ClassID(needed_size)]++; in Allocate()
494 AsanStats &thread_stats = GetCurrentThreadStats(); in QuarantineChunk() local
495 thread_stats.frees++; in QuarantineChunk()
496 thread_stats.freed += m->UsedSize(); in QuarantineChunk()
535 AsanStats &thread_stats = GetCurrentThreadStats(); in Reallocate() local
536 thread_stats.reallocs++; in Reallocate()
537 thread_stats.realloced += new_size; in Reallocate()