Searched refs:RecordFree (Results 1 – 9 of 9) sorted by relevance
/art/runtime/gc/collector/ |
D | garbage_collector.cc | 372 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()
|
D | garbage_collector.h | 113 void RecordFree(const ObjectBytePair& freed);
|
D | semi_space.cc | 214 RecordFree(ObjectBytePair(from_objects - to_objects, from_bytes - to_bytes)); in MarkingPhase() 524 RecordFree(alloc_space->Sweep(swap_bitmaps)); in Sweep()
|
D | mark_sweep.cc | 1299 RecordFree(freed); in SweepArray() 1326 RecordFree(alloc_space->Sweep(swap_bitmaps)); in Sweep()
|
D | mark_compact.cc | 1467 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()
|
D | concurrent_copying.cc | 2518 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/ |
D | bump_pointer_space.h | 160 void RecordFree(int32_t objects, int32_t bytes) { in RecordFree() function
|
/art/runtime/gc/ |
D | heap.h | 546 void RecordFree(uint64_t freed_objects, int64_t freed_bytes);
|
D | heap.cc | 1884 void Heap::RecordFree(uint64_t freed_objects, int64_t freed_bytes) { in RecordFree() function in art::gc::Heap
|