Home
last modified time | relevance | path

Searched refs:kWaitingPerformingGc (Results 1 – 6 of 6) sorted by relevance

/art/runtime/
Dthread_state.h32 kWaitingPerformingGc, // WAITING TS_WAIT performing GC enumerator
Dthread-inl.h207 DCHECK(this == self || IsSuspended() || GetState() == kWaitingPerformingGc) in RevokeThreadLocalAllocationStack()
Ddebugger.cc2158 case kWaitingPerformingGc: in ToJdwpThreadStatus()
/art/runtime/native/
Djava_lang_Thread.cc78 case kWaitingPerformingGc: return kJavaWaiting; in Thread_nativeGetStatus()
/art/runtime/gc/
Dheap.cc1545 ScopedThreadStateChange tsc(self, kWaitingPerformingGc); in PerformHomogeneousSpaceCompact()
1614 ScopedThreadStateChange tsc(self, kWaitingPerformingGc); in TransitionCollector()
2082 ScopedThreadStateChange tsc(self, kWaitingPerformingGc); in CollectGarbageInternal()
/art/runtime/gc/collector/
Dmark_sweep.cc969 CHECK(thread == self || thread->IsSuspended() || thread->GetState() == kWaitingPerformingGc) in Run()