OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:thread_stats
(Results
1 - 4
of
4
) sorted by null
/external/compiler-rt/lib/asan/
asan_allocator2.cc
37
AsanStats &
thread_stats
= GetCurrentThreadStats();
local
38
thread_stats
.mmaps++;
39
thread_stats
.mmaped += size;
52
AsanStats &
thread_stats
= GetCurrentThreadStats();
local
53
thread_stats
.munmaps++;
54
thread_stats
.munmaped += size;
290
AsanStats &
thread_stats
= GetCurrentThreadStats();
local
291
thread_stats
.real_frees++;
292
thread_stats
.really_freed += m->UsedSize();
412
AsanStats &
thread_stats
= GetCurrentThreadStats()
local
479
AsanStats &
thread_stats
= GetCurrentThreadStats();
local
515
AsanStats &
thread_stats
= GetCurrentThreadStats();
local
[
all
...]
/external/linux-tools-perf/
builtin-lock.c
121
static struct rb_root
thread_stats
;
variable in typeref:struct:rb_root
128
node =
thread_stats
.rb_node;
144
struct rb_node **rb = &
thread_stats
.rb_node;
161
rb_insert_color(&new->rb, &
thread_stats
);
198
rb_link_node(&st->rb, NULL, &
thread_stats
.rb_node);
199
rb_insert_color(&st->rb, &
thread_stats
);
827
node = rb_first(&
thread_stats
);
/art/runtime/gc/
heap.cc
780
RuntimeStats*
thread_stats
= Thread::Current()->GetStats();
local
781
++
thread_stats
->allocated_objects;
782
thread_stats
->allocated_bytes += size;
802
RuntimeStats*
thread_stats
= Thread::Current()->GetStats();
local
803
thread_stats
->freed_objects += freed_objects;
804
thread_stats
->freed_bytes += freed_bytes;
[
all
...]
/art/runtime/
class_linker.cc
3080
RuntimeStats*
thread_stats
= self->GetStats();
local
[
all
...]
Completed in 3028 milliseconds