OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ProcessReferences
(Results
1 - 4
of
4
) sorted by null
/art/runtime/gc/
reference_processor.cc
113
void ReferenceProcessor::
ProcessReferences
(bool concurrent, TimingLogger* timings,
119
TimingLogger::ScopedTiming t(concurrent ? __FUNCTION__ : "(Paused)
ProcessReferences
", timings);
/art/runtime/gc/collector/
mark_compact.cc
143
void MarkCompact::
ProcessReferences
(Thread* self) {
145
heap_->GetReferenceProcessor()->
ProcessReferences
(
221
ProcessReferences
(self);
semi_space.cc
156
void SemiSpace::
ProcessReferences
(Thread* self) {
158
GetHeap()->GetReferenceProcessor()->
ProcessReferences
(
236
ProcessReferences
(self_);
[
all
...]
mark_sweep.cc
63
// having this can add overhead in
ProcessReferences
since we may end up doing many calls of
171
void MarkSweep::
ProcessReferences
(Thread* self) {
173
GetHeap()->GetReferenceProcessor()->
ProcessReferences
(
286
ProcessReferences
(self);
[
all
...]
Completed in 2247 milliseconds