Searched defs:heap_ (Results 1 - 8 of 8) sorted by relevance

/art/runtime/gc/accounting/
H A Dheap_bitmap.h67 explicit HeapBitmap(Heap* heap) : heap_(heap) {}
70 const Heap* const heap_; member in class:art::gc::accounting::HeapBitmap
H A Dremembered_set.h50 : name_(name), heap_(heap), space_(space) {}
68 return heap_;
77 Heap* const heap_; member in class:art::gc::accounting::RememberedSet
H A Dmod_union_table.h62 heap_(heap),
96 return heap_;
104 Heap* const heap_; member in class:art::gc::accounting::ModUnionTable
/art/patchoat/
H A Dpatchoat.h63 : oat_file_(oat_file), image_(nullptr), bitmap_(nullptr), heap_(nullptr), delta_(delta),
67 : image_(image), bitmap_(bitmap), heap_(heap),
72 : oat_file_(oat_file), image_(image), bitmap_(bitmap), heap_(heap),
132 DCHECK_GT(reinterpret_cast<uintptr_t>(obj), reinterpret_cast<uintptr_t>(heap_->Begin()));
133 DCHECK_LT(reinterpret_cast<uintptr_t>(obj), reinterpret_cast<uintptr_t>(heap_->End()));
135 reinterpret_cast<uintptr_t>(obj) - reinterpret_cast<uintptr_t>(heap_->Begin());
196 const MemMap* const heap_; member in class:art::PatchOat
/art/runtime/gc/collector/
H A Dgarbage_collector.h138 return heap_;
184 Heap* const heap_; member in class:art::gc::collector::GarbageCollector
/art/runtime/
H A Druntime.h252 return heap_;
617 gc::Heap* heap_; member in class:art::Runtime
/art/runtime/gc/
H A Dheap.h1057 Heap* const heap_; member in class:art::gc::Heap::ScopedDisableRosAllocVerification
1064 : heap_(heap),
1065 orig_verify_pre_gc_(heap_->verify_pre_gc_rosalloc_),
1066 orig_verify_pre_sweeping_(heap_->verify_pre_sweeping_rosalloc_),
1067 orig_verify_post_gc_(heap_->verify_post_gc_rosalloc_) {
1068 heap_->verify_pre_gc_rosalloc_ = false;
1069 heap_->verify_pre_sweeping_rosalloc_ = false;
1070 heap_->verify_post_gc_rosalloc_ = false;
1073 heap_->verify_pre_gc_rosalloc_ = orig_verify_pre_gc_;
1074 heap_
1228 Heap* const heap_; member in class:art::gc::Heap::AllocationTimer
[all...]
H A Dheap.cc2600 : heap_(heap), fail_count_(fail_count), verify_referent_(verify_referent) {}
2620 return heap_->IsLiveObjectLocked(obj, true, false, true);
2648 accounting::CardTable* card_table = heap_->GetCardTable();
2649 accounting::ObjectStack* alloc_stack = heap_->allocation_stack_.get();
2650 accounting::ObjectStack* live_stack = heap_->live_stack_.get();
2654 if (heap_->IsValidObjectAddress(obj->GetClass())) {
2661 space::ContinuousSpace* ref_space = heap_->FindContinuousSpaceFromObject(ref, true);
2673 if (ref->GetClass() != nullptr && heap_->IsValidObjectAddress(ref->GetClass()) &&
2688 heap_->GetLiveBitmap()->GetContinuousSpaceBitmap(obj);
2729 Heap* const heap_; member in class:art::gc::VerifyReferenceVisitor
2768 Heap* const heap_; member in class:art::gc::VerifyObjectVisitor
2915 Heap* const heap_; member in class:art::gc::VerifyReferenceCardVisitor
2936 Heap* const heap_; member in class:art::gc::VerifyLiveStackReferences
[all...]

Completed in 4630 milliseconds