Home
last modified time | relevance | path

Searched refs:GetBytesAllocated (Results 1 – 21 of 21) sorted by relevance

/art/runtime/base/
Darena_allocator.cc210 size_t ArenaPool::GetBytesAllocated() const { in GetBytesAllocated() function in art::ArenaPool
214 total += arena->GetBytesAllocated(); in GetBytesAllocated()
246 total += cur_arena->GetBytesAllocated(); in BytesUsed()
Darena_allocator.h141 size_t GetBytesAllocated() const { in GetBytesAllocated() function
187 size_t GetBytesAllocated() const LOCKS_EXCLUDED(lock_);
/art/runtime/native/
Ddalvik_system_VMDebug.cc299 zygoteUsed += zygote_space->GetBytesAllocated(); in VMDebug_getHeapSpaceStats()
304 allocUsed += malloc_space->GetBytesAllocated(); in VMDebug_getHeapSpaceStats()
309 allocUsed += bump_pointer_space->GetBytesAllocated(); in VMDebug_getHeapSpaceStats()
314 largeObjectsSize += space->AsLargeObjectSpace()->GetBytesAllocated(); in VMDebug_getHeapSpaceStats()
/art/runtime/gc/space/
Dzygote_space.h65 uint64_t GetBytesAllocated() { in GetBytesAllocated() function
Ddlmalloc_space.h125 uint64_t GetBytesAllocated() OVERRIDE;
Dmalloc_space.h136 virtual uint64_t GetBytesAllocated() = 0;
Dbump_pointer_space.h113 uint64_t GetBytesAllocated() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Dlarge_object_space_test.cc110 EXPECT_EQ(0U, los->GetBytesAllocated()); in LargeObjectTest()
Dlarge_object_space.h51 uint64_t GetBytesAllocated() OVERRIDE { in GetBytesAllocated() function
Drosalloc_space.h118 uint64_t GetBytesAllocated() OVERRIDE;
Dbump_pointer_space.cc213 uint64_t BumpPointerSpace::GetBytesAllocated() { in GetBytesAllocated() function in art::gc::space::BumpPointerSpace
Dspace.h198 virtual uint64_t GetBytesAllocated() = 0;
Ddlmalloc_space.cc262 uint64_t DlMallocSpace::GetBytesAllocated() { in GetBytesAllocated() function in art::gc::space::DlMallocSpace
Drosalloc_space.cc289 uint64_t RosAllocSpace::GetBytesAllocated() { in GetBytesAllocated() function in art::gc::space::RosAllocSpace
Dregion_space.h117 uint64_t GetBytesAllocated() { in GetBytesAllocated() function
/art/runtime/gc/collector/
Dsemi_space.cc247 const int64_t from_bytes = from_space_->GetBytesAllocated(); in MarkingPhase()
796 uint64_t current_los_bytes_allocated = los != nullptr ? los->GetBytesAllocated() : 0U; in FinishPhase()
809 los != nullptr ? los->GetBytesAllocated() : 0U; in FinishPhase()
Dconcurrent_copying.cc209 cc->from_space_num_bytes_at_first_pause_ = cc->region_space_->GetBytesAllocated(); in Run()
/art/runtime/gc/
Dheap.h429 size_t GetBytesAllocated() const { in GetBytesAllocated() function
459 return std::max(GetBytesAllocated(), growth_limit_); in GetMaxMemory()
468 return max_allowed_footprint_ - GetBytesAllocated(); in GetFreeMemoryUntilGC()
473 return growth_limit_ - GetBytesAllocated(); in GetFreeMemoryUntilOOME()
Dheap.cc1262 total_alloc_space_allocated = GetBytesAllocated(); in TrimSpaces()
1264 total_alloc_space_allocated -= large_object_space_->GetBytesAllocated(); in TrimSpaces()
1270 total_alloc_space_allocated -= region_space_->GetBytesAllocated(); in TrimSpaces()
1691 return GetBytesFreedEver() + GetBytesAllocated(); in GetBytesAllocatedEver()
2413 const uint64_t bytes_allocated_before_gc = GetBytesAllocated(); in CollectGarbageInternal()
2499 const size_t current_heap_size = GetBytesAllocated(); in LogGC()
3212 os << "Heap: " << GetPercentFree() << "% free, " << PrettySize(GetBytesAllocated()) << "/" in DumpForSigQuit()
3275 const uint64_t bytes_allocated = GetBytesAllocated(); in GrowForUtilization()
3649 return std::max(max_allowed_footprint_, GetBytesAllocated()); in GetTotalMemory()
/art/compiler/driver/
Dcompiler_driver.cc2496 oss << "arena alloc=" << PrettySize(arena_pool->GetBytesAllocated()); in GetMemoryUsageString()
2497 oss << " java alloc=" << PrettySize(heap->GetBytesAllocated()); in GetMemoryUsageString()
/art/runtime/
Ddebugger.cc4465 JDWP::Append4BE(bytes, heap->GetBytesAllocated()); in DdmSendHeapInfo()