/art/libartbase/base/ |
D | malloc_arena_pool.h | 32 size_t GetBytesAllocated() const override;
|
D | malloc_arena_pool.cc | 125 size_t MallocArenaPool::GetBytesAllocated() const { in GetBytesAllocated() function in art::MallocArenaPool 129 total += arena->GetBytesAllocated(); in GetBytesAllocated()
|
D | arena_allocator.cc | 196 total += cur_arena->GetBytesAllocated(); in BytesUsed() 309 DCHECK_EQ(bytes, arena_head_->next_->GetBytesAllocated()); in AllocFromNewArenaWithMemoryTool()
|
D | arena_allocator.h | 203 size_t GetBytesAllocated() const { in GetBytesAllocated() function 236 virtual size_t GetBytesAllocated() const = 0;
|
/art/runtime/base/ |
D | mem_map_arena_pool.h | 30 size_t GetBytesAllocated() const override;
|
D | mem_map_arena_pool.cc | 140 size_t MemMapArenaPool::GetBytesAllocated() const { in GetBytesAllocated() function in art::MemMapArenaPool 144 total += arena->GetBytesAllocated(); in GetBytesAllocated()
|
D | gc_visited_arena_pool.cc | 149 size_t GcVisitedArenaPool::GetBytesAllocated() const { in GetBytesAllocated() function in art::GcVisitedArenaPool 342 MEMORY_TOOL_MAKE_UNDEFINED(arena->Begin(), arena->GetBytesAllocated()); in FreeArenaChain() 364 bytes_allocated_ += temp->GetBytesAllocated(); in FreeArenaChain()
|
D | gc_visited_arena_pool.h | 74 uint8_t* last_byte = AlignUp(Begin() + GetBytesAllocated(), gPageSize); in GetLastUsedByte() 158 size_t GetBytesAllocated() const override REQUIRES(!lock_);
|
/art/runtime/gc/space/ |
D | zygote_space.h | 68 uint64_t GetBytesAllocated() override { in GetBytesAllocated() function
|
D | dlmalloc_space.h | 139 uint64_t GetBytesAllocated() override;
|
D | malloc_space.h | 132 uint64_t GetBytesAllocated() override = 0;
|
D | large_object_space_test.cc | 120 EXPECT_EQ(0U, los->GetBytesAllocated()); in LargeObjectTest()
|
D | bump_pointer_space.h | 125 uint64_t GetBytesAllocated() override REQUIRES_SHARED(Locks::mutator_lock_)
|
D | rosalloc_space.h | 130 uint64_t GetBytesAllocated() override;
|
D | large_object_space.h | 53 uint64_t GetBytesAllocated() override { in GetBytesAllocated() function
|
D | space.h | 197 virtual uint64_t GetBytesAllocated() = 0;
|
D | bump_pointer_space.cc | 182 uint64_t BumpPointerSpace::GetBytesAllocated() { in GetBytesAllocated() function in art::gc::space::BumpPointerSpace
|
D | dlmalloc_space.cc | 373 uint64_t DlMallocSpace::GetBytesAllocated() { in GetBytesAllocated() function in art::gc::space::DlMallocSpace
|
D | rosalloc_space.cc | 358 uint64_t RosAllocSpace::GetBytesAllocated() { in GetBytesAllocated() function in art::gc::space::RosAllocSpace
|
D | region_space.h | 171 uint64_t GetBytesAllocated() override REQUIRES(!region_lock_) { in GetBytesAllocated() function
|
D | region_space.cc | 1038 heap->TraceHeapSize(heap->GetBytesAllocated() + EvacBytes()); in TraceHeapSize()
|
/art/runtime/gc/ |
D | heap.cc | 1246 uint64_t bytes_allocated = GetBytesAllocated(); in CalculateGcWeightedAllocatedBytes() 1564 UnsignedDifference(GetBytesAllocated(), num_bytes_alive_after_gc_); in DoPendingCollectorTransition() 1719 total_alloc_space_allocated = GetBytesAllocated(); in TrimSpaces() 1721 total_alloc_space_allocated -= large_object_space_->GetBytesAllocated(); in TrimSpaces() 1727 total_alloc_space_allocated -= region_space_->GetBytesAllocated(); in TrimSpaces() 2003 size_t curr_bytes_allocated = GetBytesAllocated(); in AllocateInternalWithGc() 2152 uint64_t current_bytes = GetBytesFreedEver(std::memory_order_acquire) + GetBytesAllocated(); in GetBytesAllocatedEver() 2823 const size_t bytes_allocated_before_gc = GetBytesAllocated(); in CollectGarbageInternal() 2939 const size_t current_heap_size = GetBytesAllocated(); in LogGC() 3699 os << "Heap: " << GetPercentFree() << "% free, " << PrettySize(GetBytesAllocated()) << "/" in DumpForSigQuit() [all …]
|
D | heap.h | 563 size_t GetBytesAllocated() const { in GetBytesAllocated() function 605 return std::max(GetBytesAllocated(), growth_limit_); in GetMaxMemory() 615 GetBytesAllocated()); in GetFreeMemoryUntilGC() 620 return UnsignedDifference(growth_limit_, GetBytesAllocated()); in GetFreeMemoryUntilOOME()
|
/art/runtime/gc/collector/ |
D | semi_space.cc | 208 const int64_t from_bytes = from_space_->GetBytesAllocated(); in MarkingPhase()
|
/art/runtime/ |
D | debugger.cc | 435 Append4BE(bytes, heap->GetBytesAllocated()); in DdmSendHeapInfo()
|