Home | History | Annotate | Download | only in asan

Lines Matching refs:thread_stats

430     AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats();
431 thread_stats.real_frees++;
432 thread_stats.really_freed += m->used_size;
433 thread_stats.really_freed_redzones += m->Size() - m->used_size;
434 thread_stats.really_freed_by_size[m->SizeClass()]++;
457 AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats();
458 thread_stats.mmaps++;
459 thread_stats.mmaped += mmap_size;
460 thread_stats.mmaped_by_size[size_class] += n_chunks;
533 AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats();
535 thread_stats.mallocs++;
536 thread_stats.malloced += size;
537 thread_stats.malloced_redzones += size_to_allocate - size;
538 thread_stats.malloced_by_size[size_class]++;
544 thread_stats.malloc_large++;
551 thread_stats.malloc_small_slow++;
630 AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats();
631 thread_stats.frees++;
632 thread_stats.freed += m->used_size;
633 thread_stats.freed_by_size[m->SizeClass()]++;
654 AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats();
655 thread_stats.reallocs++;
656 thread_stats.realloced += new_size;