HomeSort by relevance Sort by last modified time
    Searched refs:MoreCore (Results 1 - 4 of 4) sorted by null

  /art/runtime/gc/space/
malloc_space.h 76 void* MoreCore(intptr_t increment);
89 // Returns the number of bytes that the heap is allowed to obtain from the system via MoreCore.
93 // MoreCore. Note this is used to stop the mspace growing beyond the limit to Capacity. When
malloc_space.cc 130 void* MallocSpace::MoreCore(intptr_t increment) {
134 VLOG(heap) << "MallocSpace::MoreCore " << PrettySize(increment);
dlmalloc_space.cc 59 // Protect memory beyond the starting size. morecore will add r/w permissions when necessory
90 // Memory we promise to dlmalloc before it asks for morecore.
117 // morecore_start bytes of memory is exhaused morecore will be called.
120 // Do not allow morecore requests to succeed beyond the initial size of the heap
234 return dlmalloc_space->MoreCore(increment);
rosalloc_space.cc 66 // Protect memory beyond the starting size. MoreCore will add r/w permissions when necessory
101 // Memory we promise to rosalloc before it asks for morecore.
132 // memory is exhaused morecore will be called.
233 return rosalloc_space->MoreCore(increment);

Completed in 50 milliseconds