Home
last modified time | relevance | path

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

/art/runtime/native/
Ddalvik_system_VMDebug.cc289 zygoteUsed += zygote_space->GetBytesAllocated(); in VMDebug_getHeapSpaceStats()
294 allocUsed += malloc_space->GetBytesAllocated(); in VMDebug_getHeapSpaceStats()
299 allocUsed += bump_pointer_space->GetBytesAllocated(); in VMDebug_getHeapSpaceStats()
304 largeObjectsSize += space->AsLargeObjectSpace()->GetBytesAllocated(); in VMDebug_getHeapSpaceStats()
/art/compiler/utils/
Darena_allocator.h127 size_t GetBytesAllocated() const { in GetBytesAllocated() function
151 size_t GetBytesAllocated() const LOCKS_EXCLUDED(lock_);
Darena_allocator.cc180 size_t ArenaPool::GetBytesAllocated() const { in GetBytesAllocated() function in art::ArenaPool
184 total += arena->GetBytesAllocated(); in GetBytesAllocated()
/art/runtime/gc/space/
Dzygote_space.h63 uint64_t GetBytesAllocated() { in GetBytesAllocated() function
Ddlmalloc_space.h114 uint64_t GetBytesAllocated() OVERRIDE;
Dmalloc_space.h126 virtual uint64_t GetBytesAllocated() = 0;
Dlarge_object_space_test.cc92 EXPECT_EQ(0U, los->GetBytesAllocated()); in LargeObjectTest()
Dbump_pointer_space.h113 uint64_t GetBytesAllocated() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Drosalloc_space.h99 uint64_t GetBytesAllocated() OVERRIDE;
Dlarge_object_space.h45 uint64_t GetBytesAllocated() OVERRIDE { in GetBytesAllocated() function
Dbump_pointer_space.cc208 uint64_t BumpPointerSpace::GetBytesAllocated() { in GetBytesAllocated() function in art::gc::space::BumpPointerSpace
Dspace.h191 virtual uint64_t GetBytesAllocated() = 0;
Ddlmalloc_space.cc277 uint64_t DlMallocSpace::GetBytesAllocated() { in GetBytesAllocated() function in art::gc::space::DlMallocSpace
Drosalloc_space.cc278 uint64_t RosAllocSpace::GetBytesAllocated() { in GetBytesAllocated() function in art::gc::space::RosAllocSpace
/art/runtime/gc/
Dheap.h397 size_t GetBytesAllocated() const { in GetBytesAllocated() function
427 return std::max(GetBytesAllocated(), growth_limit_); in GetMaxMemory()
436 return max_allowed_footprint_ - GetBytesAllocated(); in GetFreeMemoryUntilGC()
441 return growth_limit_ - GetBytesAllocated(); in GetFreeMemoryUntilOOME()
1081 delta_(heap_->GetMaxMemory() - heap_->GetBytesAllocated()) { in ScopedHeapFill()
Dheap.cc411 last_gc_size_ = GetBytesAllocated(); in Heap()
1072 total_alloc_space_allocated = GetBytesAllocated() - large_object_space_->GetBytesAllocated(); in Trim()
1458 return GetBytesFreedEver() + GetBytesAllocated(); in GetBytesAllocatedEver()
2166 uint64_t gc_start_size = GetBytesAllocated(); in CollectGarbageInternal()
2247 const size_t current_heap_size = GetBytesAllocated(); in CollectGarbageInternal()
2868 os << "Heap: " << GetPercentFree() << "% free, " << PrettySize(GetBytesAllocated()) << "/" in DumpForSigQuit()
2930 const uint64_t bytes_allocated = GetBytesAllocated(); in GrowForUtilization()
3233 return std::max(max_allowed_footprint_, GetBytesAllocated()); in GetTotalMemory()
/art/runtime/gc/collector/
Dsemi_space.cc245 const int64_t from_bytes = from_space_->GetBytesAllocated(); in MarkingPhase()
764 uint64_t current_los_bytes_allocated = GetHeap()->GetLargeObjectsSpace()->GetBytesAllocated(); in FinishPhase()
777 GetHeap()->GetLargeObjectsSpace()->GetBytesAllocated(); in FinishPhase()
/art/compiler/driver/
Dcompiler_driver.cc2305 oss << "arena alloc=" << PrettySize(arena_pool->GetBytesAllocated()); in GetMemoryUsageString()
2306 oss << " java alloc=" << PrettySize(heap->GetBytesAllocated()); in GetMemoryUsageString()
/art/runtime/
Ddebugger.cc4130 JDWP::Append4BE(bytes, heap->GetBytesAllocated()); in DdmSendHeapInfo()