Searched defs:ProcessReferences (Results 1 - 5 of 5) sorted by relevance

/art/runtime/gc/
H A Dreference_processor.cc118 void ReferenceProcessor::ProcessReferences(bool concurrent, TimingLogger* timings, function in class:art::gc::ReferenceProcessor
124 TimingLogger::ScopedTiming t(concurrent ? __FUNCTION__ : "(Paused)ProcessReferences", timings);
/art/runtime/gc/collector/
H A Dmark_compact.cc141 void MarkCompact::ProcessReferences(Thread* self) { function in class:art::gc::collector::MarkCompact
143 heap_->GetReferenceProcessor()->ProcessReferences(
219 ProcessReferences(self);
H A Dsemi_space.cc157 void SemiSpace::ProcessReferences(Thread* self) { function in class:art::gc::collector::SemiSpace
159 GetHeap()->GetReferenceProcessor()->ProcessReferences(
237 ProcessReferences(self_);
H A Dconcurrent_copying.cc397 LOG(INFO) << "ProcessReferences";
399 ProcessReferences(self, true);
1676 void ConcurrentCopying::ProcessReferences(Thread* self, bool concurrent) { function in class:art::gc::collector::ConcurrentCopying
1677 TimingLogger::ScopedTiming split("ProcessReferences", GetTimings());
1679 GetHeap()->GetReferenceProcessor()->ProcessReferences(
H A Dmark_sweep.cc67 // having this can add overhead in ProcessReferences since we may end up doing many calls of
175 void MarkSweep::ProcessReferences(Thread* self) { function in class:art::gc::collector::MarkSweep
177 GetHeap()->GetReferenceProcessor()->ProcessReferences(
291 ProcessReferences(self);

Completed in 165 milliseconds