Lines Matching refs:mspace_
44 mspace_(mspace) { in DlMallocSpace()
135 mspace_set_footprint_limit(mspace_, max_allowed); in AllocWithGrowth()
139 size_t footprint = mspace_footprint(mspace_); in AllocWithGrowth()
140 mspace_set_footprint_limit(mspace_, footprint); in AllocWithGrowth()
169 mspace_free(mspace_, ptr); in Free()
211 mspace_bulk_free(mspace_, reinterpret_cast<void**>(ptrs), num_ptrs); in FreeList()
240 mspace_trim(mspace_, 0); in Trim()
243 mspace_inspect_all(mspace_, DlmallocMadviseCallback, &reclaimed); in Trim()
250 mspace_inspect_all(mspace_, callback, arg); in Walk()
256 return mspace_footprint(mspace_); in GetFootprint()
261 return mspace_footprint_limit(mspace_); in GetFootprintLimit()
269 size_t current_space_size = mspace_footprint(mspace_); in SetFootprintLimit()
274 mspace_set_footprint_limit(mspace_, new_size); in SetFootprintLimit()
280 mspace_inspect_all(mspace_, DlmallocBytesAllocatedCallback, &bytes_allocated); in GetBytesAllocated()
287 mspace_inspect_all(mspace_, DlmallocObjectsAllocatedCallback, &objects_allocated); in GetObjectsAllocated()
297 mspace_ = CreateMspace(mem_map_->Begin(), starting_size_, initial_size_); in Clear()