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()
442 thread_stats.malloced_by_size[class_id]++; in Allocate()
444 thread_stats.malloc_large++; in Allocate()
495 AsanStats &thread_stats = GetCurrentThreadStats(); in QuarantineChunk() local
496 thread_stats.frees++; in QuarantineChunk()
497 thread_stats.freed += m->UsedSize(); in QuarantineChunk()
536 AsanStats &thread_stats = GetCurrentThreadStats(); in Reallocate() local
537 thread_stats.reallocs++; in Reallocate()
538 thread_stats.realloced += new_size; in Reallocate()