Lines Matching refs:heap_
1191 Heap* const heap_;
1198 : heap_(heap), in ScopedDisableRosAllocVerification()
1199 orig_verify_pre_gc_(heap_->verify_pre_gc_rosalloc_), in ScopedDisableRosAllocVerification()
1200 orig_verify_pre_sweeping_(heap_->verify_pre_sweeping_rosalloc_), in ScopedDisableRosAllocVerification()
1201 orig_verify_post_gc_(heap_->verify_post_gc_rosalloc_) { in ScopedDisableRosAllocVerification()
1202 heap_->verify_pre_gc_rosalloc_ = false; in ScopedDisableRosAllocVerification()
1203 heap_->verify_pre_sweeping_rosalloc_ = false; in ScopedDisableRosAllocVerification()
1204 heap_->verify_post_gc_rosalloc_ = false; in ScopedDisableRosAllocVerification()
1207 heap_->verify_pre_gc_rosalloc_ = orig_verify_pre_gc_; in ~ScopedDisableRosAllocVerification()
1208 heap_->verify_pre_sweeping_rosalloc_ = orig_verify_pre_sweeping_; in ~ScopedDisableRosAllocVerification()
1209 heap_->verify_post_gc_rosalloc_ = orig_verify_post_gc_; in ~ScopedDisableRosAllocVerification()