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()
67 if (old_thread_state_ == kRunnable) { in ~ScopedThreadStateChange()
69 } else if (thread_state_ == kRunnable) { in ~ScopedThreadStateChange()
97 return self_->GetState() == kRunnable; in IsRunnable()
109 : ScopedObjectAccessAlreadyRunnable(env), tsc_(Self(), kRunnable) { in ScopedObjectAccessUnchecked()
115 : ScopedObjectAccessAlreadyRunnable(self), tsc_(self, kRunnable) { in ScopedObjectAccessUnchecked()
Dthread-inl.h107 DCHECK_NE(new_state, kRunnable); in SetState()
116 CHECK_NE(old_state_and_flags.as_struct.state, kRunnable); in SetState()
183 DCHECK_NE(new_state, kRunnable); in TransitionToSuspendedAndRunCheckpoints()
184 DCHECK_EQ(GetState(), kRunnable); in TransitionToSuspendedAndRunCheckpoints()
244 DCHECK_NE(static_cast<ThreadState>(old_state), kRunnable); in TransitionFromSuspendedToRunnable()
254 new_state_and_flags.as_struct.state = kRunnable; in TransitionFromSuspendedToRunnable()
Dthread_state.h27 kRunnable, // RUNNABLE TS_RUNNING runnable enumerator
Dthread_list.cc345 if (thread->GetState() == kRunnable) { in RunCheckpoint()
430 if (thread->GetState() != kRunnable) { in RunEmptyCheckpoint()
525 CHECK_NE(self->GetState(), kRunnable); in FlipThreadRoots()
681 CHECK_NE(self->GetState(), kRunnable); in SuspendAllInternal()
1155 CHECK_NE(self->GetState(), kRunnable); in SuspendSelfForDebugger()
1369 if (thread != self && thread->GetState() == kRunnable) { in SuspendAllDaemonThreadsForShutdown()
1428 CHECK_NE(self->GetState(), kRunnable); in Unregister()
Dsignal_catcher.cc179 DCHECK_NE(self->GetState(), kRunnable); in Run()
Dfault_handler.cc279 if (state != kRunnable) { in IsInGeneratedCode()
Dthread.cc993 CHECK_NE(self->GetState(), kRunnable); in Attach()
1567 if (old_state_and_flags.as_struct.state != kRunnable) { in RequestCheckpoint()
1572 DCHECK_EQ(old_state_and_flags.as_struct.state, kRunnable); in RequestCheckpoint()
1594 if (old_state_and_flags.as_struct.state != kRunnable) { in RequestEmptyCheckpoint()
1601 DCHECK_EQ(old_state_and_flags.as_struct.state, kRunnable); in RequestEmptyCheckpoint()
1623 if (suspend_state != ThreadState::kRunnable) { in Wait()
1673 if (GetState() == ThreadState::kRunnable) { in RequestSynchronousCheckpoint()
1710 while (GetState() == ThreadState::kRunnable) { in RequestSynchronousCheckpoint()
1723 DCHECK_NE(GetState(), ThreadState::kRunnable); in RequestSynchronousCheckpoint()
2454 CHECK_NE(GetState(), kRunnable); in ~Thread()
Dthread.h260 return state_and_flags.as_struct.state != kRunnable && in IsSuspended()
1322 if (old_state == kRunnable && new_state != kRunnable) { in SetStateUnsafe()
Dart_method.cc312 CHECK_EQ(kRunnable, self->GetState()); in Invoke()
Ddebugger.cc859 CHECK_EQ(self->GetState(), kRunnable); in GetMonitorInfo()
2242 case kRunnable: in ToJdwpThreadStatus()
3256 CHECK_EQ(self->GetState(), kRunnable); in ManageDeoptimization()
3264 const ThreadState old_state = self->SetStateUnsafe(kRunnable); in ManageDeoptimization()
3274 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable); in ManageDeoptimization()
4326 if (self->GetState() != kRunnable) { in DdmBroadcast()
Dreflection.cc818 DCHECK_EQ(soa.Self()->GetState(), kRunnable); in BoxPrimitive()
Dclass_linker.cc3255 DCHECK_EQ(self->GetState(), kRunnable); in DefineClass()
/art/runtime/native/
Dscoped_fast_native_object_access-inl.h32 DCHECK_EQ(Self()->GetState(), kRunnable); in ScopedFastNativeObjectAccess()
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.cc422 case art::ThreadState::kRunnable: in GetJvmtiThreadStateFromInternal()
503 case art::ThreadState::kRunnable: in GetJavaStateFromInternal()
Dti_method.cc954 if (!target->RequestSynchronousCheckpoint(&c, art::ThreadState::kRunnable)) { in GetLocalInstance()
Dti_stack.cc929 if (!target->RequestSynchronousCheckpoint(&closure, art::ThreadState::kRunnable)) { in GetOwnedMonitorInfoCommon()
/art/runtime/gc/
Dheap-inl.h54 CHECK_EQ(self->GetState(), kRunnable); in AllocObjectWithAllocator()
Dheap.cc3475 CHECK_NE(self->GetState(), kRunnable); in PreSweepingGcVerification()
/art/runtime/gc/collector/
Dsemi_space.cc183 ThreadState old_state = self_->SetStateUnsafe(kRunnable); in MarkingPhase()
189 CHECK_EQ(self_->SetStateUnsafe(old_state), kRunnable); in MarkingPhase()
/art/runtime/jdwp/
Djdwp_event.cc719 CHECK_NE(self->GetState(), kRunnable); in SetWaitForJdwpToken()
/art/dex2oat/driver/
Dcompiler_driver.cc1455 CHECK_NE(self->GetState(), kRunnable); in ForAllLambda()
/art/compiler/jni/
Djni_compiler_test.cc456 EXPECT_EQ(kRunnable, Thread::Current()->GetState()); in expectValidThreadState()