Home
last modified time | relevance | path

Searched refs:max_allowed_footprint (Results 1 – 2 of 2) sorted by relevance

/art/runtime/gc/
Dheap.cc3402 void Heap::SetIdealFootprint(size_t max_allowed_footprint) { in SetIdealFootprint() argument
3403 if (max_allowed_footprint > GetMaxMemory()) { in SetIdealFootprint()
3404 VLOG(gc) << "Clamp target GC heap from " << PrettySize(max_allowed_footprint) << " to " in SetIdealFootprint()
3406 max_allowed_footprint = GetMaxMemory(); in SetIdealFootprint()
3408 max_allowed_footprint_ = max_allowed_footprint; in SetIdealFootprint()
4108 void Heap::VlogHeapGrowth(size_t max_allowed_footprint, size_t new_footprint, size_t alloc_size) { in VlogHeapGrowth() argument
4109 VLOG(heap) << "Growing heap from " << PrettySize(max_allowed_footprint) << " to " in VlogHeapGrowth()
Dheap.h405 void SetIdealFootprint(size_t max_allowed_footprint);
1094 static void VlogHeapGrowth(size_t max_allowed_footprint, size_t new_footprint, size_t alloc_size);