Home
last modified time | relevance | path

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

/art/runtime/gc/collector/
Dgarbage_collector.cc199 void GarbageCollector::RecordFree(const ObjectBytePair& freed) { in RecordFree() function in art::gc::collector::GarbageCollector
201 heap_->RecordFree(freed.objects, freed.bytes); in RecordFree()
205 heap_->RecordFree(freed.objects, freed.bytes); in RecordFreeLOS()
Dgarbage_collector.h106 void RecordFree(const ObjectBytePair& freed);
Dmark_compact.cc394 space_->RecordFree(objects_freed, bytes_freed); in Compact()
395 RecordFree(ObjectBytePair(objects_freed, bytes_freed)); in Compact()
542 RecordFree(alloc_space->Sweep(swap_bitmaps)); in Sweep()
Dsemi_space.cc267 RecordFree(ObjectBytePair(from_objects - to_objects, from_bytes - to_bytes)); in MarkingPhase()
663 RecordFree(alloc_space->Sweep(swap_bitmaps)); in Sweep()
Dmark_sweep.cc1275 RecordFree(freed); in SweepArray()
1302 RecordFree(alloc_space->Sweep(swap_bitmaps)); in Sweep()
Dconcurrent_copying.cc1683 RecordFree(alloc_space->Sweep(swap_bitmaps)); in Sweep()
1784 RecordFree(ObjectBytePair(freed_objects, freed_bytes)); in ReclaimPhase()
/art/runtime/gc/space/
Dbump_pointer_space.h157 void RecordFree(int32_t objects, int32_t bytes) { in RecordFree() function
/art/runtime/gc/
Dheap.h455 void RecordFree(uint64_t freed_objects, int64_t freed_bytes);
Dheap.cc1523 void Heap::RecordFree(uint64_t freed_objects, int64_t freed_bytes) { in RecordFree() function in art::gc::Heap