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

/art/runtime/gc/
H A Dheap.cc2812 void Heap::SetIdealFootprint(size_t max_allowed_footprint) { argument
2813 if (max_allowed_footprint > GetMaxMemory()) {
2814 VLOG(gc) << "Clamp target GC heap from " << PrettySize(max_allowed_footprint) << " to "
2816 max_allowed_footprint = GetMaxMemory();
2818 max_allowed_footprint_ = max_allowed_footprint;

Completed in 11 milliseconds