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

/art/runtime/gc/collector/
H A Dmark_sweep.cc210 // Enable the reference processing slow path, needs to be done with mutators paused since there
849 size_t MarkSweep::GetThreadCount(bool paused) const {
855 return (paused ? heap_->GetParallelGCThreadCount() : heap_->GetConcGCThreadCount()) + 1;
858 void MarkSweep::ScanGrayObjects(bool paused, uint8_t minimum_age) { argument
861 size_t thread_count = GetThreadCount(paused);
867 TimingLogger::ScopedTiming t(paused ? "(Paused)ScanGrayObjects" : __FUNCTION__,
894 // If paused and the space is neither zygote nor image space, we could clear the dirty
898 bool clear_card = paused && !space->IsZygoteSpace() && !space->IsImageSpace();
939 name = paused ? "(Paused)ScanGrayImageSpaceObjects" : "ScanGrayImageSpaceObjects";
942 name = paused
1062 RecursiveMarkDirtyObjects(bool paused, uint8_t minimum_age) argument
1394 ProcessMarkStack(bool paused) argument
[all...]

Completed in 42 milliseconds