Home
last modified time | relevance | path

Searched refs:mspace_ (Results 1 – 3 of 3) sorted by relevance

/art/runtime/gc/space/
Ddlmalloc_space.cc60 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()
[all …]
Ddlmalloc_space.h109 return mspace_; in GetMspace()
183 void* mspace_; variable
Ddlmalloc_space-inl.h59 mirror::Object* result = reinterpret_cast<mirror::Object*>(mspace_malloc(mspace_, num_bytes)); in AllocWithoutGrowthLocked()