Searched defs:max_allowed_footprint (Results 1 - 1 of 1) sorted by relevance

/art/runtime/gc/
H A Dheap.cc3221 void Heap::SetIdealFootprint(size_t max_allowed_footprint) { argument
3222 if (max_allowed_footprint > GetMaxMemory()) {
3223 VLOG(gc) << "Clamp target GC heap from " << PrettySize(max_allowed_footprint) << " to "
3225 max_allowed_footprint = GetMaxMemory();
3227 max_allowed_footprint_ = max_allowed_footprint;

Completed in 27 milliseconds