Home
last modified time | relevance | path

Searched refs:mark_compact_collector_ (Results 1 – 2 of 2) sorted by relevance

/art/runtime/gc/
Dheap.cc259 mark_compact_collector_(nullptr), in Heap()
606 mark_compact_collector_ = new collector::MarkCompact(this); in Heap()
607 garbage_collectors_.push_back(mark_compact_collector_); in Heap()
2482 mark_compact_collector_->SetSpace(target_space->AsBumpPointerSpace()); in Compact()
2483 mark_compact_collector_->Run(kGcCauseCollectorTransition, false); in Compact()
2484 return mark_compact_collector_; in Compact()
2575 mark_compact_collector_->SetSpace(bump_pointer_space_); in CollectGarbageInternal()
2576 collector = mark_compact_collector_; in CollectGarbageInternal()
2581 if (collector != mark_compact_collector_ && collector != concurrent_copying_collector_) { in CollectGarbageInternal()
Dheap.h1368 collector::MarkCompact* mark_compact_collector_; variable