Home | History | Annotate | Download | only in asan

Lines Matching refs:thread_stats

37     AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats();
38 thread_stats.mmaps++;
39 thread_stats.mmaped += size;
52 AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats();
53 thread_stats.munmaps++;
54 thread_stats.munmaped += size;
277 AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats();
278 thread_stats.real_frees++;
279 thread_stats.really_freed += m->UsedSize();
404 AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats();
405 thread_stats.mallocs++;
406 thread_stats.malloced += size;
407 thread_stats.malloced_redzones += needed_size - size;
409 thread_stats.malloced_by_size[class_id]++;
411 thread_stats.malloc_large++;
455 AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats();
456 thread_stats.frees++;
457 thread_stats.freed += m->UsedSize();
479 AsanStats &thread_stats = asanThreadRegistry().GetCurrentThreadStats();
480 thread_stats.reallocs++;
481 thread_stats.realloced += new_size;