Home
last modified time | relevance | path

Searched refs:freed (Results 1 – 9 of 9) sorted by relevance

/art/runtime/gc/collector/
Dgarbage_collector.cc175 void GarbageCollector::RecordFree(const ObjectBytePair& freed) { in RecordFree() argument
176 GetCurrentIteration()->freed_.Add(freed); in RecordFree()
177 heap_->RecordFree(freed.objects, freed.bytes); in RecordFree()
179 void GarbageCollector::RecordFreeLOS(const ObjectBytePair& freed) { in RecordFreeLOS() argument
180 GetCurrentIteration()->freed_los_.Add(freed); in RecordFreeLOS()
181 heap_->RecordFree(freed.objects, freed.bytes); in RecordFreeLOS()
Dgarbage_collector.h91 void SetFreedRevoke(uint64_t freed) { in SetFreedRevoke() argument
92 freed_bytes_revoke_ = freed; in SetFreedRevoke()
181 void RecordFree(const ObjectBytePair& freed);
183 void RecordFreeLOS(const ObjectBytePair& freed);
Dmark_sweep.cc1191 ObjectBytePair freed; in SweepArray() local
1235 freed.objects += chunk_free_pos; in SweepArray()
1236 freed.bytes += alloc_space->FreeList(self, chunk_free_pos, chunk_free_buffer); in SweepArray()
1247 freed.objects += chunk_free_pos; in SweepArray()
1248 freed.bytes += alloc_space->FreeList(self, chunk_free_pos, chunk_free_buffer); in SweepArray()
1277 RecordFree(freed); in SweepArray()
/art/test/141-class-unload/
Dinfo.txt1 Test that classes get freed after they are no longer reachable.
/art/runtime/gc/space/
Dmalloc_space.cc62 for (auto& freed : recent_freed_objects_) { in MallocSpace() local
63 freed.first = nullptr; in MallocSpace()
64 freed.second = nullptr; in MallocSpace()
247 context->freed.objects += num_ptrs; in SweepCallback()
248 context->freed.bytes += space->FreeList(self, num_ptrs, ptrs); in SweepCallback()
Dmemory_tool_malloc_space-inl.h225 size_t freed = 0; in FreeList() local
227 freed += Free(self, ptrs[i]); in FreeList()
230 return freed; in FreeList()
Dspace.cc104 return scc.freed; in Sweep()
Dlarge_object_space.cc594 context->freed.objects += num_ptrs; in SweepCallback()
595 context->freed.bytes += space->FreeList(self, num_ptrs, ptrs); in SweepCallback()
611 return scc.freed; in Sweep()
Dspace.h255 collector::ObjectBytePair freed; member