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

/art/runtime/gc/space/
H A Ddlmalloc_space.cc237 size_t DlMallocSpace::Trim() { function in class:art::gc::space::DlMallocSpace
239 // Trim to release memory at the end of the space.
H A Drosalloc_space.cc236 size_t RosAllocSpace::Trim() { function in class:art::gc::space::RosAllocSpace
237 VLOG(heap) << "RosAllocSpace::Trim() ";
240 // Trim to release memory at the end of the space.
241 rosalloc_->Trim();
/art/runtime/gc/allocator/
H A Drosalloc.cc1490 bool RosAlloc::Trim() { function in class:art::gc::allocator::RosAlloc
1528 LOG(INFO) << "RosAlloc::Trim() : decreased the footprint from "
1641 // Only growing is supported here. But Trim() is supported.
/art/runtime/
H A Dutils.cc925 std::string Trim(std::string s) { function in namespace:art
/art/runtime/gc/
H A Dheap.cc961 // No need to Trim(). Homogeneous space compaction may free more virtual and physical memory.
980 Trim();
983 void Heap::Trim() { function in class:art::gc::Heap
1005 // Trim the managed spaces.
1015 managed_reclaimed += malloc_space->Trim();
1033 // Trim the native heap.
1912 // Trim the pages at the end of the non moving space.
1913 non_moving_space_->Trim();

Completed in 97 milliseconds