Lines Matching defs:DlMallocSpace

36 template class ValgrindMallocSpace<DlMallocSpace, void*>;
38 DlMallocSpace::DlMallocSpace(const std::string& name, MemMap* mem_map, void* mspace, byte* begin,
48 DlMallocSpace* DlMallocSpace::CreateFromMemMap(MemMap* mem_map, const std::string& name,
68 return new ValgrindMallocSpace<DlMallocSpace, void*>(
72 return new DlMallocSpace(name, mem_map, mspace, begin, end, begin + capacity, growth_limit,
77 DlMallocSpace* DlMallocSpace::Create(const std::string& name, size_t initial_size,
83 LOG(INFO) << "DlMallocSpace::Create entering " << name
102 DlMallocSpace* space = CreateFromMemMap(mem_map, name, starting_size, initial_size,
106 LOG(INFO) << "DlMallocSpace::Create exiting (" << PrettyDuration(NanoTime() - start_time)
112 void* DlMallocSpace::CreateMspace(void* begin, size_t morecore_start, size_t initial_size) {
128 mirror::Object* DlMallocSpace::AllocWithGrowth(Thread* self, size_t num_bytes,
151 MallocSpace* DlMallocSpace::CreateInstance(const std::string& name, MemMap* mem_map,
155 return new DlMallocSpace(name, mem_map, allocator, begin, end, limit, growth_limit,
159 size_t DlMallocSpace::Free(Thread* self, mirror::Object* ptr) {
173 size_t DlMallocSpace::FreeList(Thread* self, size_t num_ptrs, mirror::Object** ptrs) {
219 DlMallocSpace* dlmalloc_space = heap->GetDlMallocSpace();
225 DlMallocSpace* cur_dlmalloc_space = space->AsDlMallocSpace();
237 size_t DlMallocSpace::Trim() {
247 void DlMallocSpace::Walk(void(*callback)(void *start, void *end, size_t num_bytes, void* callback_arg),
254 size_t DlMallocSpace::GetFootprint() {
259 size_t DlMallocSpace::GetFootprintLimit() {
264 void DlMallocSpace::SetFootprintLimit(size_t new_size) {
266 VLOG(heap) << "DlMallocSpace::SetFootprintLimit " << PrettySize(new_size);
277 uint64_t DlMallocSpace::GetBytesAllocated() {
284 uint64_t DlMallocSpace::GetObjectsAllocated() {
291 void DlMallocSpace::Clear() {
302 void DlMallocSpace::CheckMoreCoreForPrecondition() {
316 void DlMallocSpace::LogFragmentationAllocFailure(std::ostream& os, size_t failed_alloc_bytes) {