Lines Matching refs:heap_
1381 Heap* const heap_;
1388 : heap_(heap), in ScopedDisableRosAllocVerification()
1389 orig_verify_pre_gc_(heap_->verify_pre_gc_rosalloc_), in ScopedDisableRosAllocVerification()
1390 orig_verify_pre_sweeping_(heap_->verify_pre_sweeping_rosalloc_), in ScopedDisableRosAllocVerification()
1391 orig_verify_post_gc_(heap_->verify_post_gc_rosalloc_) { in ScopedDisableRosAllocVerification()
1392 heap_->verify_pre_gc_rosalloc_ = false; in ScopedDisableRosAllocVerification()
1393 heap_->verify_pre_sweeping_rosalloc_ = false; in ScopedDisableRosAllocVerification()
1394 heap_->verify_post_gc_rosalloc_ = false; in ScopedDisableRosAllocVerification()
1397 heap_->verify_pre_gc_rosalloc_ = orig_verify_pre_gc_; in ~ScopedDisableRosAllocVerification()
1398 heap_->verify_pre_sweeping_rosalloc_ = orig_verify_pre_sweeping_; in ~ScopedDisableRosAllocVerification()
1399 heap_->verify_post_gc_rosalloc_ = orig_verify_post_gc_; in ~ScopedDisableRosAllocVerification()