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

/art/runtime/gc/
H A Dreference_processor.cc128 void ReferenceProcessor::ProcessReferences(bool concurrent, function in class:art::gc::ReferenceProcessor
132 TimingLogger::ScopedTiming t(concurrent ? __FUNCTION__ : "(Paused)ProcessReferences", timings);
/art/runtime/gc/collector/
H A Dmark_compact.cc124 void MarkCompact::ProcessReferences(Thread* self) { function in class:art::gc::collector::MarkCompact
126 heap_->GetReferenceProcessor()->ProcessReferences(
197 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.cc887 LOG(INFO) << "ProcessReferences";
891 ProcessReferences(self);
2749 void ConcurrentCopying::ProcessReferences(Thread* self) { function in class:art::gc::collector::ConcurrentCopying
2750 TimingLogger::ScopedTiming split("ProcessReferences", GetTimings());
2753 GetHeap()->GetReferenceProcessor()->ProcessReferences(
H A Dmark_sweep.cc64 // having this can add overhead in ProcessReferences since we may end up doing many calls of
176 void MarkSweep::ProcessReferences(Thread* self) { function in class:art::gc::collector::MarkSweep
178 GetHeap()->GetReferenceProcessor()->ProcessReferences(
342 ProcessReferences(self);

Completed in 149 milliseconds