Home
last modified time | relevance | path

Searched refs:current_allocator_ (Results 1 – 2 of 2) sorted by relevance

/art/runtime/gc/
Dheap.cc172 current_allocator_(kAllocatorTypeDlMalloc), in Heap()
498 if (current_allocator_ != allocator) { in ChangeAllocator()
502 current_allocator_ = allocator; in ChangeAllocator()
504 SetQuickAllocEntryPointsAllocator(current_allocator_); in ChangeAllocator()
2124 DCHECK(current_allocator_ == kAllocatorTypeBumpPointer || in CollectGarbageInternal()
2125 current_allocator_ == kAllocatorTypeTLAB); in CollectGarbageInternal()
2150 } else if (current_allocator_ == kAllocatorTypeRosAlloc || in CollectGarbageInternal()
2151 current_allocator_ == kAllocatorTypeDlMalloc) { in CollectGarbageInternal()
2154 LOG(FATAL) << "Invalid current allocator " << current_allocator_; in CollectGarbageInternal()
Dheap.h199 return current_allocator_; in GetCurrentAllocator()
980 AllocatorType current_allocator_; variable