Home
last modified time | relevance | path

Searched refs:ConcurrentCopying (Results 1 – 6 of 6) sorted by relevance

/art/runtime/gc/collector/
Dconcurrent_copying.cc36 ConcurrentCopying::ConcurrentCopying(Heap* heap, const std::string& name_prefix) in ConcurrentCopying() function in art::gc::collector::ConcurrentCopying
60 ConcurrentCopying::~ConcurrentCopying() { in ~ConcurrentCopying()
63 void ConcurrentCopying::RunPhases() { in RunPhases()
101 void ConcurrentCopying::BindBitmaps() { in BindBitmaps()
128 void ConcurrentCopying::InitializePhase() { in InitializePhase()
157 explicit ThreadFlipVisitor(ConcurrentCopying* concurrent_copying, bool use_tlab) in ThreadFlipVisitor()
167 if (ConcurrentCopying::kEnableFromSpaceAccountingCheck) { in Run()
186 ConcurrentCopying* const concurrent_copying_;
193 explicit FlipCallback(ConcurrentCopying* concurrent_copying) in FlipCallback()
198 ConcurrentCopying* cc = concurrent_copying_; in Run()
[all …]
Dconcurrent_copying.h135 class ConcurrentCopying : public GarbageCollector {
145 ConcurrentCopying(Heap* heap, const std::string& name_prefix = "");
146 ~ConcurrentCopying();
282 DISALLOW_IMPLICIT_CONSTRUCTORS(ConcurrentCopying);
/art/runtime/gc/accounting/
Dheap_bitmap.h31 class ConcurrentCopying; variable
88 friend class art::gc::collector::ConcurrentCopying;
/art/runtime/
Dread_barrier-inl.h167 gc::collector::ConcurrentCopying* collector = heap->ConcurrentCopyingCollector(); in IsDuringStartup()
/art/runtime/gc/
Dheap.h72 class ConcurrentCopying; variable
643 collector::ConcurrentCopying* ConcurrentCopyingCollector() { in ConcurrentCopyingCollector()
1143 collector::ConcurrentCopying* concurrent_copying_collector_;
1213 friend class collector::ConcurrentCopying;
Dheap.cc496 concurrent_copying_collector_ = new collector::ConcurrentCopying(this); in Heap()