Home
last modified time | relevance | path

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

/art/runtime/gc/
Dheap.cc3539 void Heap::SetIdealFootprint(size_t max_allowed_footprint) { in SetIdealFootprint() argument
3540 if (max_allowed_footprint > GetMaxMemory()) { in SetIdealFootprint()
3541 VLOG(gc) << "Clamp target GC heap from " << PrettySize(max_allowed_footprint) << " to " in SetIdealFootprint()
3543 max_allowed_footprint = GetMaxMemory(); in SetIdealFootprint()
3545 max_allowed_footprint_ = max_allowed_footprint; in SetIdealFootprint()
Dheap.h396 void SetIdealFootprint(size_t max_allowed_footprint);