Home | History | Annotate | Download | only in space

Lines Matching refs:mspace

104   ValgrindDlMallocSpace(const std::string& name, MemMap* mem_map, void* mspace, byte* begin,
106 DlMallocSpace(name, mem_map, mspace, begin, end, growth_limit) {
119 DlMallocSpace::DlMallocSpace(const std::string& name, MemMap* mem_map, void* mspace, byte* begin,
124 lock_("allocation space lock", kAllocSpaceLock), mspace_(mspace),
126 CHECK(mspace != NULL);
195 void* mspace = CreateMallocSpace(mem_map->Begin(), starting_size, initial_size);
196 if (mspace == NULL) {
197 LOG(ERROR) << "Failed to initialize mspace for alloc space (" << name << ")";
211 space = new ValgrindDlMallocSpace(name, mem_map_ptr, mspace, mem_map_ptr->Begin(), end,
214 space = new DlMallocSpace(name, mem_map_ptr, mspace, mem_map_ptr->Begin(), end, growth_limit);
226 // create mspace using our backing storage starting at begin and with a footprint of
255 // Grow as much as possible within the mspace.
312 void* mspace = CreateMallocSpace(end_, starting_size, initial_size);
319 new DlMallocSpace(alloc_space_name, mem_map.release(), mspace, end_, end, growth_limit);
411 extern "C" void* art_heap_morecore(void* mspace, intptr_t increment) {
413 DCHECK_EQ(heap->GetAllocSpace()->GetMspace(), mspace);