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

/art/runtime/gc/
H A Dreference_processor.cc127 void ReferenceProcessor::ProcessReferences(bool concurrent, function in class:art::gc::ReferenceProcessor
131 TimingLogger::ScopedTiming t(concurrent ? __FUNCTION__ : "(Paused)ProcessReferences", timings);
/art/runtime/gc/collector/
H A Dmark_compact.cc122 void MarkCompact::ProcessReferences(Thread* self) { function in class:art::gc::collector::MarkCompact
124 heap_->GetReferenceProcessor()->ProcessReferences(
195 ProcessReferences(self);
H A Dsemi_space.cc169 void SemiSpace::ProcessReferences(Thread* self) { function in class:art::gc::collector::SemiSpace
171 GetHeap()->GetReferenceProcessor()->ProcessReferences(
248 ProcessReferences(self_);
H A Dconcurrent_copying.cc780 LOG(INFO) << "ProcessReferences";
784 ProcessReferences(self);
2557 void ConcurrentCopying::ProcessReferences(Thread* self) { function in class:art::gc::collector::ConcurrentCopying
2558 TimingLogger::ScopedTiming split("ProcessReferences", GetTimings());
2561 GetHeap()->GetReferenceProcessor()->ProcessReferences(
H A Dmark_sweep.cc63 // 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(
319 ProcessReferences(self);

Completed in 78 milliseconds