Lines Matching refs:heap_
1362 : heap_(heap), failed_(false) {} in SHARED_LOCKS_REQUIRED()
1375 accounting::CardTable* card_table = heap_->GetCardTable(); in operator ()()
1376 accounting::ObjectStack* alloc_stack = heap_->allocation_stack_.get(); in operator ()()
1377 accounting::ObjectStack* live_stack = heap_->live_stack_.get(); in operator ()()
1388 if (heap_->IsHeapAddress(obj->GetClass())) { in operator ()()
1395 space::ContinuousSpace* ref_space = heap_->FindContinuousSpaceFromObject(ref, true); in operator ()()
1407 if (ref->GetClass() != nullptr && heap_->IsHeapAddress(ref->GetClass()) && in operator ()()
1421 accounting::SpaceBitmap* bitmap = heap_->GetLiveBitmap()->GetContinuousSpaceBitmap(obj); in operator ()()
1459 return heap_->IsLiveObjectLocked(obj, true, false, true); in IsLive()
1468 Heap* const heap_; member in art::gc::VerifyReferenceVisitor
1475 explicit VerifyObjectVisitor(Heap* heap) : heap_(heap), failed_(false) {} in VerifyObjectVisitor()
1481 VerifyReferenceVisitor visitor(heap_); in operator ()()
1493 Heap* const heap_; member in art::gc::VerifyObjectVisitor
1530 : heap_(heap), failed_(failed) { in VerifyReferenceCardVisitor()
1540 accounting::CardTable* card_table = heap_->GetCardTable(); in operator ()()
1549 accounting::ObjectStack* live_stack = heap_->live_stack_.get(); in operator ()()
1554 if (heap_->GetLiveBitmap()->Test(obj)) { in operator ()()
1592 Heap* const heap_; member in art::gc::VerifyReferenceCardVisitor
1599 : heap_(heap), in VerifyLiveStackReferences()
1604 VerifyReferenceCardVisitor visitor(heap_, const_cast<bool*>(&failed_)); in operator ()()
1613 Heap* const heap_; member in art::gc::VerifyLiveStackReferences