Home
last modified time | relevance | path

Searched refs:GetObjectsAllocated (Results 1 – 16 of 16) sorted by relevance

/art/runtime/gc/space/
Dzygote_space.h67 uint64_t GetObjectsAllocated() { in GetObjectsAllocated() function
Ddlmalloc_space.h115 uint64_t GetObjectsAllocated() OVERRIDE;
Dmalloc_space.h127 virtual uint64_t GetObjectsAllocated() = 0;
Dlarge_object_space_test.cc93 EXPECT_EQ(0U, los->GetObjectsAllocated()); in LargeObjectTest()
Dbump_pointer_space.h114 uint64_t GetObjectsAllocated() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Drosalloc_space.h100 uint64_t GetObjectsAllocated() OVERRIDE;
Dlarge_object_space.h48 uint64_t GetObjectsAllocated() OVERRIDE { in GetObjectsAllocated() function
Dbump_pointer_space.cc226 uint64_t BumpPointerSpace::GetObjectsAllocated() { in GetObjectsAllocated() function in art::gc::space::BumpPointerSpace
Dspace.h193 virtual uint64_t GetObjectsAllocated() = 0;
Ddlmalloc_space.cc284 uint64_t DlMallocSpace::GetObjectsAllocated() { in GetObjectsAllocated() function in art::gc::space::DlMallocSpace
Drosalloc_space.cc284 uint64_t RosAllocSpace::GetObjectsAllocated() { in GetObjectsAllocated() function in art::gc::space::RosAllocSpace
/art/runtime/gc/collector/
Dmark_compact.cc385 int64_t objects_freed = space_->GetObjectsAllocated() - live_objects_in_space_; in Compact()
Dsemi_space.cc247 const uint64_t from_objects = from_space_->GetObjectsAllocated(); in MarkingPhase()
/art/runtime/gc/
Dheap.cc1445 size_t Heap::GetObjectsAllocated() const { in GetObjectsAllocated() function in art::gc::Heap
1448 total += space->GetObjectsAllocated(); in GetObjectsAllocated()
1454 return GetObjectsFreedEver() + GetObjectsAllocated(); in GetObjectsAllocatedEver()
2869 << PrettySize(GetTotalMemory()) << "; " << GetObjectsAllocated() << " objects\n"; in DumpForSigQuit()
Dheap.h402 size_t GetObjectsAllocated() const LOCKS_EXCLUDED(Locks::heap_bitmap_lock_);
/art/runtime/
Ddebugger.cc4131 JDWP::Append4BE(bytes, heap->GetObjectsAllocated()); in DdmSendHeapInfo()