Home
last modified time | relevance | path

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

/art/runtime/gc/
Dheap-inl.h224 RuntimeStats* thread_stats = self->GetStats(); in AllocObjectWithAllocator() local
225 ++thread_stats->allocated_objects; in AllocObjectWithAllocator()
226 thread_stats->allocated_bytes += bytes_allocated; in AllocObjectWithAllocator()
Dheap.cc1753 RuntimeStats* thread_stats = Thread::Current()->GetStats(); in RecordFree() local
1754 thread_stats->freed_objects += freed_objects; in RecordFree()
1755 thread_stats->freed_bytes += freed_bytes; in RecordFree()
/art/runtime/
Dclass_linker.cc5535 RuntimeStats* thread_stats = self->GetStats(); in InitializeClass() local
5537 ++thread_stats->class_init_count; in InitializeClass()
5539 thread_stats->class_init_time_ns += (t1 - t0 - t_sub); in InitializeClass()