Home
last modified time | relevance | path

Searched refs:kRunnable (Results 1 – 24 of 24) sorted by relevance

/art/runtime/
Dscoped_thread_state_change-inl.h46 if (new_thread_state == kRunnable) { in ScopedThreadStateChange()
48 } else if (old_thread_state_ == kRunnable) { in ScopedThreadStateChange()
63 if (old_thread_state_ == kRunnable) { in ~ScopedThreadStateChange()
65 } else if (thread_state_ == kRunnable) { in ~ScopedThreadStateChange()
93 return self_->GetState() == kRunnable; in IsRunnable()
105 : ScopedObjectAccessAlreadyRunnable(env), tsc_(Self(), kRunnable) { in ScopedObjectAccessUnchecked()
111 : ScopedObjectAccessAlreadyRunnable(self), tsc_(self, kRunnable) { in ScopedObjectAccessUnchecked()
Dthread-inl.h108 DCHECK_NE(new_state, kRunnable); in SetState()
117 CHECK_NE(old_state_and_flags.as_struct.state, kRunnable) << new_state << " " << *this << " " in SetState()
185 DCHECK_NE(new_state, kRunnable); in TransitionToSuspendedAndRunCheckpoints()
186 DCHECK_EQ(GetState(), kRunnable); in TransitionToSuspendedAndRunCheckpoints()
246 DCHECK_NE(static_cast<ThreadState>(old_state), kRunnable); in TransitionFromSuspendedToRunnable()
256 new_state_and_flags.as_struct.state = kRunnable; in TransitionFromSuspendedToRunnable()
Dthread_state.h32 kRunnable, // RUNNABLE TS_RUNNING runnable enumerator
Dthread_list.cc350 if (thread->GetState() == kRunnable) { in RunCheckpoint()
431 if (thread->GetState() != kRunnable) { in RunEmptyCheckpoint()
526 CHECK_NE(self->GetState(), kRunnable); in FlipThreadRoots()
679 CHECK_NE(self->GetState(), kRunnable); in SuspendAllInternal()
1200 if (thread != self && thread->GetState() == kRunnable) { in SuspendAllDaemonThreadsForShutdown()
1235 DCHECK(thread == self || !all_suspended || thread->GetState() != kRunnable); in SuspendAllDaemonThreadsForShutdown()
1291 CHECK_NE(self->GetState(), kRunnable); in Unregister()
Dsignal_catcher.cc180 DCHECK_NE(self->GetState(), kRunnable); in Run()
Dfault_handler.cc279 if (state != kRunnable) { in IsInGeneratedCode()
Dthread.cc1005 CHECK_NE(self->GetState(), kRunnable); in Attach()
1575 if (old_state_and_flags.as_struct.state != kRunnable) { in RequestCheckpoint()
1580 DCHECK_EQ(old_state_and_flags.as_struct.state, kRunnable); in RequestCheckpoint()
1602 if (old_state_and_flags.as_struct.state != kRunnable) { in RequestEmptyCheckpoint()
1609 DCHECK_EQ(old_state_and_flags.as_struct.state, kRunnable); in RequestEmptyCheckpoint()
1631 if (suspend_state != ThreadState::kRunnable) { in Wait()
1681 if (GetState() == ThreadState::kRunnable) { in RequestSynchronousCheckpoint()
1718 while (GetState() == ThreadState::kRunnable) { in RequestSynchronousCheckpoint()
1731 DCHECK_NE(GetState(), ThreadState::kRunnable); in RequestSynchronousCheckpoint()
2463 CHECK_NE(GetState(), kRunnable); in ~Thread()
Dthread.h257 return state_and_flags.as_struct.state != kRunnable && in IsSuspended()
1373 if (old_state == kRunnable && new_state != kRunnable) { in SetStateUnsafe()
Dart_method.cc321 CHECK_EQ(kRunnable, self->GetState()); in Invoke()
Ddebugger.cc271 if (self->GetState() != kRunnable) { in DdmBroadcast()
Dreflection.cc860 DCHECK_EQ(soa.Self()->GetState(), kRunnable); in BoxPrimitive()
Dclass_linker.cc3437 DCHECK_EQ(self->GetState(), kRunnable); in DefineClass()
/art/runtime/native/
Dscoped_fast_native_object_access-inl.h32 DCHECK_EQ(Self()->GetState(), kRunnable); in ScopedFastNativeObjectAccess()
Dorg_apache_harmony_dalvik_ddmc_DdmVmInternal.cc120 case kRunnable: in ToJdwpThreadStatus()
Djava_lang_Thread.cc82 case kRunnable: return kJavaRunnable; in Thread_nativeGetStatus()
/art/openjdkjvmti/
Dti_monitor.cc386 case art::kRunnable: in GetCurrentContendedMonitor()
430 if (!target->RequestSynchronousCheckpoint(&closure, art::ThreadState::kRunnable)) { in GetCurrentContendedMonitor()
Dti_thread.cc425 case art::ThreadState::kRunnable: in GetJvmtiThreadStateFromInternal()
506 case art::ThreadState::kRunnable: in GetJavaStateFromInternal()
Dti_method.cc1201 if (!target->RequestSynchronousCheckpoint(&c, art::ThreadState::kRunnable)) { in GetLocalInstance()
Dti_stack.cc946 if (!target->RequestSynchronousCheckpoint(&closure, art::ThreadState::kRunnable)) { in GetOwnedMonitorInfoCommon()
/art/runtime/gc/collector/
Dsemi_space.cc159 ThreadState old_state = self_->SetStateUnsafe(kRunnable); in MarkingPhase()
165 CHECK_EQ(self_->SetStateUnsafe(old_state), kRunnable); in MarkingPhase()
/art/runtime/gc/
Dheap-inl.h60 CHECK_EQ(self->GetState(), kRunnable); in AllocObjectWithAllocator()
Dheap.cc3356 CHECK_NE(self->GetState(), kRunnable); in PreSweepingGcVerification()
/art/dex2oat/driver/
Dcompiler_driver.cc1509 CHECK_NE(self->GetState(), kRunnable); in ForAllLambda()
/art/compiler/jni/
Djni_compiler_test.cc463 EXPECT_EQ(kRunnable, Thread::Current()->GetState()); in expectValidThreadState()