Home
last modified time | relevance | path

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

12

/art/libartbase/base/
Dmalloc_arena_pool.h32 size_t GetBytesAllocated() const override;
Dmalloc_arena_pool.cc125 size_t MallocArenaPool::GetBytesAllocated() const { in GetBytesAllocated() function in art::MallocArenaPool
129 total += arena->GetBytesAllocated(); in GetBytesAllocated()
Darena_allocator.cc200 total += cur_arena->GetBytesAllocated(); in BytesUsed()
306 DCHECK_EQ(bytes, arena_head_->next_->GetBytesAllocated()); in AllocFromNewArenaWithMemoryTool()
Darena_allocator.h201 size_t GetBytesAllocated() const { in GetBytesAllocated() function
234 virtual size_t GetBytesAllocated() const = 0;
/art/runtime/base/
Dmem_map_arena_pool.h30 size_t GetBytesAllocated() const override;
Dmem_map_arena_pool.cc128 size_t MemMapArenaPool::GetBytesAllocated() const { in GetBytesAllocated() function in art::MemMapArenaPool
132 total += arena->GetBytesAllocated(); in GetBytesAllocated()
/art/runtime/gc/space/
Dzygote_space.h68 uint64_t GetBytesAllocated() override { in GetBytesAllocated() function
Ddlmalloc_space.h139 uint64_t GetBytesAllocated() override;
Dmalloc_space.h132 uint64_t GetBytesAllocated() override = 0;
Dlarge_object_space_test.cc120 EXPECT_EQ(0U, los->GetBytesAllocated()); in LargeObjectTest()
Dbump_pointer_space.h119 uint64_t GetBytesAllocated() override REQUIRES_SHARED(Locks::mutator_lock_)
Drosalloc_space.h130 uint64_t GetBytesAllocated() override;
Dbump_pointer_space.cc170 uint64_t BumpPointerSpace::GetBytesAllocated() { in GetBytesAllocated() function in art::gc::space::BumpPointerSpace
Dlarge_object_space.h53 uint64_t GetBytesAllocated() override { in GetBytesAllocated() function
Dspace.h197 virtual uint64_t GetBytesAllocated() = 0;
Ddlmalloc_space.cc323 uint64_t DlMallocSpace::GetBytesAllocated() { in GetBytesAllocated() function in art::gc::space::DlMallocSpace
Drosalloc_space.cc358 uint64_t RosAllocSpace::GetBytesAllocated() { in GetBytesAllocated() function in art::gc::space::RosAllocSpace
Dregion_space.h171 uint64_t GetBytesAllocated() override REQUIRES(!region_lock_) { in GetBytesAllocated() function
Dregion_space.cc1026 heap->TraceHeapSize(heap->GetBytesAllocated() + EvacBytes()); in TraceHeapSize()
/art/runtime/native/
Ddalvik_system_VMDebug.cc408 zygoteUsed += zygote_space->GetBytesAllocated(); in VMDebug_getHeapSpaceStats()
413 allocUsed += malloc_space->GetBytesAllocated(); in VMDebug_getHeapSpaceStats()
417 allocUsed += bump_pointer_space->GetBytesAllocated(); in VMDebug_getHeapSpaceStats()
422 largeObjectsSize += space->AsLargeObjectSpace()->GetBytesAllocated(); in VMDebug_getHeapSpaceStats()
/art/runtime/gc/
Dheap.cc1115 uint64_t bytes_allocated = GetBytesAllocated(); in CalculateGcWeightedAllocatedBytes()
1523 total_alloc_space_allocated = GetBytesAllocated(); in TrimSpaces()
1525 total_alloc_space_allocated -= large_object_space_->GetBytesAllocated(); in TrimSpaces()
1531 total_alloc_space_allocated -= region_space_->GetBytesAllocated(); in TrimSpaces()
1796 size_t curr_bytes_allocated = GetBytesAllocated(); in AllocateInternalWithGc()
1951 current_bytes += GetBytesAllocated(); in GetBytesAllocatedEver()
2622 const size_t bytes_allocated_before_gc = GetBytesAllocated(); in CollectGarbageInternal()
2716 const size_t current_heap_size = GetBytesAllocated(); in LogGC()
3468 os << "Heap: " << GetPercentFree() << "% free, " << PrettySize(GetBytesAllocated()) << "/" in DumpForSigQuit()
3520 const size_t bytes_allocated = GetBytesAllocated(); in GrowForUtilization()
[all …]
Dheap.h547 size_t GetBytesAllocated() const { in GetBytesAllocated() function
588 return std::max(GetBytesAllocated(), growth_limit_); in GetMaxMemory()
598 GetBytesAllocated()); in GetFreeMemoryUntilGC()
603 return UnsignedDifference(growth_limit_, GetBytesAllocated()); in GetFreeMemoryUntilOOME()
/art/runtime/gc/collector/
Dsemi_space.cc207 const int64_t from_bytes = from_space_->GetBytesAllocated(); in MarkingPhase()
/art/runtime/
Ddebugger.cc440 Append4BE(bytes, heap->GetBytesAllocated()); in DdmSendHeapInfo()
/art/dex2oat/driver/
Dcompiler_driver.cc2819 const size_t arena_alloc = arena_pool->GetBytesAllocated(); in Compile()
2939 const size_t java_alloc = heap->GetBytesAllocated(); in GetMemoryUsageString()

12