Searched refs:mspace (Results 1 – 2 of 2) sorted by relevance
/art/runtime/gc/space/ |
D | dlmalloc_space.cc | 38 DlMallocSpace::DlMallocSpace(const std::string& name, MemMap* mem_map, void* mspace, byte* begin, in DlMallocSpace() argument 44 mspace_(mspace) { in DlMallocSpace() 45 CHECK(mspace != NULL); in DlMallocSpace() 53 void* mspace = CreateMspace(mem_map->Begin(), starting_size, initial_size); in CreateFromMemMap() local 54 if (mspace == nullptr) { in CreateFromMemMap() 69 name, mem_map, mspace, begin, end, begin + capacity, growth_limit, initial_size, in CreateFromMemMap() 72 return new DlMallocSpace(name, mem_map, mspace, begin, end, begin + capacity, growth_limit, in CreateFromMemMap() 217 extern "C" void* art_heap_morecore(void* mspace, intptr_t increment) { in art_heap_morecore() argument 221 if (UNLIKELY(dlmalloc_space == nullptr || dlmalloc_space->GetMspace() != mspace)) { in art_heap_morecore() 226 if (cur_dlmalloc_space->GetMspace() == mspace) { in art_heap_morecore() [all …]
|
D | dlmalloc_space.h | 131 DlMallocSpace(const std::string& name, MemMap* mem_map, void* mspace, byte* begin, byte* end,
|