Home
last modified time | relevance | path

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

/art/runtime/gc/collector/
Dgarbage_collector.cc372 void GarbageCollector::RecordFree(const ObjectBytePair& freed) { in RecordFree() function in art::gc::collector::GarbageCollector
374 heap_->RecordFree(freed.objects, freed.bytes); in RecordFree()
378 heap_->RecordFree(freed.objects, freed.bytes); in RecordFreeLOS()
Dgarbage_collector.h113 void RecordFree(const ObjectBytePair& freed);
Dsemi_space.cc214 RecordFree(ObjectBytePair(from_objects - to_objects, from_bytes - to_bytes)); in MarkingPhase()
524 RecordFree(alloc_space->Sweep(swap_bitmaps)); in Sweep()
Dmark_sweep.cc1299 RecordFree(freed); in SweepArray()
1326 RecordFree(alloc_space->Sweep(swap_bitmaps)); in Sweep()
Dmark_compact.cc1467 RecordFree(alloc_space->Sweep(swap_bitmaps)); in Sweep()
3283 bump_pointer_space_->RecordFree(freed_objects_, freed_bytes); in CompactionPause()
3284 RecordFree(ObjectBytePair(freed_objects_, freed_bytes)); in CompactionPause()
4167 bump_pointer_space_->RecordFree(freed_objects_, freed_bytes); in CompactionPhase()
4168 RecordFree(ObjectBytePair(freed_objects_, freed_bytes)); in CompactionPhase()
Dconcurrent_copying.cc2518 RecordFree(alloc_space->Sweep(swap_bitmaps)); in Sweep()
2608 RecordFree(freed); in SweepArray()
2823 RecordFree(ObjectBytePair(freed_objects, freed_bytes)); in ReclaimPhase()
/art/runtime/gc/space/
Dbump_pointer_space.h160 void RecordFree(int32_t objects, int32_t bytes) { in RecordFree() function
/art/runtime/gc/
Dheap.h546 void RecordFree(uint64_t freed_objects, int64_t freed_bytes);
Dheap.cc1884 void Heap::RecordFree(uint64_t freed_objects, int64_t freed_bytes) { in RecordFree() function in art::gc::Heap