Home
last modified time | relevance | path

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

/art/runtime/gc/space/
Dzygote_space.h72 uint64_t GetObjectsAllocated() override { in GetObjectsAllocated() function
Ddlmalloc_space.h140 uint64_t GetObjectsAllocated() override;
Dmalloc_space.h133 uint64_t GetObjectsAllocated() override = 0;
Dbump_pointer_space.h121 uint64_t GetObjectsAllocated() override REQUIRES_SHARED(Locks::mutator_lock_)
Dlarge_object_space_test.cc121 EXPECT_EQ(0U, los->GetObjectsAllocated()); in LargeObjectTest()
Drosalloc_space.h131 uint64_t GetObjectsAllocated() override;
Dbump_pointer_space.cc188 uint64_t BumpPointerSpace::GetObjectsAllocated() { in GetObjectsAllocated() function in art::gc::space::BumpPointerSpace
Dlarge_object_space.h57 uint64_t GetObjectsAllocated() override { in GetObjectsAllocated() function
Dspace.h199 virtual uint64_t GetObjectsAllocated() = 0;
Ddlmalloc_space.cc330 uint64_t DlMallocSpace::GetObjectsAllocated() { in GetObjectsAllocated() function in art::gc::space::DlMallocSpace
Drosalloc_space.cc364 uint64_t RosAllocSpace::GetObjectsAllocated() { in GetObjectsAllocated() function in art::gc::space::RosAllocSpace
Dregion_space.h174 uint64_t GetObjectsAllocated() override REQUIRES(!region_lock_) { in GetObjectsAllocated() function
/art/runtime/native/
Ddalvik_system_VMDebug.cc359 std::string output = std::to_string(heap->GetObjectsAllocated()); in VMDebug_getRuntimeStatInternal()
/art/runtime/gc/collector/
Dsemi_space.cc209 const uint64_t from_objects = from_space_->GetObjectsAllocated(); in MarkingPhase()
Dconcurrent_copying.cc566 cc->from_space_num_objects_at_first_pause_ = cc->region_space_->GetObjectsAllocated(); in Run()
/art/runtime/
Ddebugger.cc441 Append4BE(bytes, heap->GetObjectsAllocated()); in DdmSendHeapInfo()
/art/runtime/gc/
Dheap.cc1974 size_t Heap::GetObjectsAllocated() const { in GetObjectsAllocated() function in art::gc::Heap
1987 total += space->GetObjectsAllocated(); in GetObjectsAllocated()
1996 total += GetObjectsAllocated(); in GetObjectsAllocatedEver()
3498 << PrettySize(GetTotalMemory()) << "; " << GetObjectsAllocated() << " objects\n"; in DumpForSigQuit()
Dheap.h548 size_t GetObjectsAllocated() const