Lines Matching refs:mspace_
60 mspace_(mspace) { in DlMallocSpace()
175 mspace_set_footprint_limit(mspace_, max_allowed); in AllocWithGrowth()
180 size_t footprint = mspace_footprint(mspace_); in AllocWithGrowth()
181 mspace_set_footprint_limit(mspace_, footprint); in AllocWithGrowth()
236 mspace_free(mspace_, ptr); in Free()
278 mspace_bulk_free(mspace_, reinterpret_cast<void**>(ptrs), num_ptrs); in FreeList()
286 mspace_trim(mspace_, 0); in Trim()
289 mspace_inspect_all(mspace_, DlmallocMadviseCallback, &reclaimed); in Trim()
296 mspace_inspect_all(mspace_, callback, arg); in Walk()
302 return mspace_footprint(mspace_); in GetFootprint()
307 return mspace_footprint_limit(mspace_); in GetFootprintLimit()
315 size_t current_space_size = mspace_footprint(mspace_); in SetFootprintLimit()
320 mspace_set_footprint_limit(mspace_, new_size); in SetFootprintLimit()
326 mspace_inspect_all(mspace_, DlmallocBytesAllocatedCallback, &bytes_allocated); in GetBytesAllocated()
333 mspace_inspect_all(mspace_, DlmallocObjectsAllocatedCallback, &objects_allocated); in GetObjectsAllocated()
343 mspace_ = CreateMspace(mem_map_.Begin(), starting_size_, initial_size_); in Clear()