HomeSort by relevance Sort by last modified time
    Searched defs:FreeListSpace (Results 1 - 2 of 2) sorted by null

  /art/runtime/gc/space/
large_object_space.cc 129 FreeListSpace* FreeListSpace::Create(const std::string& name, byte* requested_begin, size_t size) {
134 return new FreeListSpace(name, mem_map, mem_map->Begin(), mem_map->End());
137 FreeListSpace::FreeListSpace(const std::string& name, MemMap* mem_map, byte* begin, byte* end)
146 FreeListSpace::~FreeListSpace() {}
148 void FreeListSpace::Walk(DlMallocSpace::WalkCallback callback, void* arg) {
163 void FreeListSpace::RemoveFreePrev(AllocationHeader* header) {
172 FreeListSpace::AllocationHeader* FreeListSpace::GetAllocationHeader(const mirror::Object* obj)
    [all...]
large_object_space.h 106 class FreeListSpace : public LargeObjectSpace {
108 virtual ~FreeListSpace();
109 static FreeListSpace* Create(const std::string& name, byte* requested_begin, size_t capacity);
208 friend class FreeListSpace;
211 FreeListSpace(const std::string& name, MemMap* mem_map, byte* begin, byte* end);

Completed in 675 milliseconds