Home
last modified time | relevance | path

Searched refs:thread_stats (Results 1 – 2 of 2) sorted by relevance

/external/compiler-rt/lib/asan/
Dasan_allocator.cc155 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
[all …]
/external/linux-tools-perf/src/tools/perf/
Dbuiltin-lock.c113 static struct rb_root thread_stats; variable
120 node = thread_stats.rb_node; in thread_stat_find()
136 struct rb_node **rb = &thread_stats.rb_node; in thread_stat_insert()
153 rb_insert_color(&new->rb, &thread_stats); in thread_stat_insert()
194 rb_link_node(&st->rb, NULL, &thread_stats.rb_node); in thread_stat_findnew_first()
195 rb_insert_color(&st->rb, &thread_stats); in thread_stat_findnew_first()
761 node = rb_first(&thread_stats); in dump_threads()