Lines Matching refs:mspace_
44 mspace_(mspace) { in DlMallocSpace()
136 mspace_set_footprint_limit(mspace_, max_allowed); in AllocWithGrowth()
141 size_t footprint = mspace_footprint(mspace_); in AllocWithGrowth()
142 mspace_set_footprint_limit(mspace_, footprint); in AllocWithGrowth()
177 mspace_free(mspace_, ptr); in Free()
219 mspace_bulk_free(mspace_, reinterpret_cast<void**>(ptrs), num_ptrs); in FreeList()
227 mspace_trim(mspace_, 0); in Trim()
230 mspace_inspect_all(mspace_, DlmallocMadviseCallback, &reclaimed); in Trim()
237 mspace_inspect_all(mspace_, callback, arg); in Walk()
243 return mspace_footprint(mspace_); in GetFootprint()
248 return mspace_footprint_limit(mspace_); in GetFootprintLimit()
256 size_t current_space_size = mspace_footprint(mspace_); in SetFootprintLimit()
261 mspace_set_footprint_limit(mspace_, new_size); in SetFootprintLimit()
267 mspace_inspect_all(mspace_, DlmallocBytesAllocatedCallback, &bytes_allocated); in GetBytesAllocated()
274 mspace_inspect_all(mspace_, DlmallocObjectsAllocatedCallback, &objects_allocated); in GetObjectsAllocated()
284 mspace_ = CreateMspace(mem_map_->Begin(), starting_size_, initial_size_); in Clear()