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

  /art/runtime/gc/collector/
garbage_collector.cc 125 accounting::SpaceBitmap* live_bitmap = space->GetLiveBitmap(); local
127 if (live_bitmap != mark_bitmap) {
128 heap_->GetLiveBitmap()->ReplaceBitmap(live_bitmap, mark_bitmap);
129 heap_->GetMarkBitmap()->ReplaceBitmap(mark_bitmap, live_bitmap);
mark_sweep.cc 604 accounting::SpaceBitmap* live_bitmap = space->GetLiveBitmap(); local
606 GetHeap()->GetMarkBitmap()->ReplaceBitmap(mark_bitmap, live_bitmap);
608 alloc_space->mark_bitmap_.reset(live_bitmap);
887 accounting::SpaceBitmap* live_bitmap = image_space->GetLiveBitmap(); local
888 DCHECK(live_bitmap != NULL);
889 live_bitmap->VisitMarkedRange(begin, end, [this](const Object* obj) {
1148 accounting::SpaceBitmap* live_bitmap = space->GetLiveBitmap(); local
1240 accounting::SpaceBitmap* live_bitmap = space->GetLiveBitmap(); local
    [all...]
  /art/runtime/gc/accounting/
mod_union_table.cc 209 SpaceBitmap* live_bitmap = space->GetLiveBitmap(); local
210 live_bitmap->VisitMarkedRange(start, end, visitor);
250 SpaceBitmap* live_bitmap = space->GetLiveBitmap(); local
251 live_bitmap->VisitMarkedRange(start, end, visitor);
  /art/runtime/gc/
heap.cc 717 accounting::SpaceBitmap* live_bitmap = space->GetLiveBitmap(); local
720 << live_bitmap << " " << *live_bitmap << "\n"
    [all...]

Completed in 291 milliseconds