Home
last modified time | relevance | path

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

/art/runtime/
Dscoped_thread_state_change-inl.h45 if (new_thread_state == kRunnable) { in ScopedThreadStateChange()
47 } else if (old_thread_state_ == kRunnable) { in ScopedThreadStateChange()
66 if (old_thread_state_ == kRunnable) { in ~ScopedThreadStateChange()
68 } else if (thread_state_ == kRunnable) { in ~ScopedThreadStateChange()
96 return self_->GetState() == kRunnable; in IsRunnable()
108 : ScopedObjectAccessAlreadyRunnable(env), tsc_(Self(), kRunnable) { in ScopedObjectAccessUnchecked()
114 : ScopedObjectAccessAlreadyRunnable(self), tsc_(self, kRunnable) { in ScopedObjectAccessUnchecked()
Dthread-inl.h106 DCHECK_NE(new_state, kRunnable); in SetState()
115 CHECK_NE(old_state_and_flags.as_struct.state, kRunnable); in SetState()
182 DCHECK_NE(new_state, kRunnable); in TransitionToSuspendedAndRunCheckpoints()
183 DCHECK_EQ(GetState(), kRunnable); in TransitionToSuspendedAndRunCheckpoints()
243 DCHECK_NE(static_cast<ThreadState>(old_state), kRunnable); in TransitionFromSuspendedToRunnable()
253 new_state_and_flags.as_struct.state = kRunnable; in TransitionFromSuspendedToRunnable()
Dthread_state.h27 kRunnable, // RUNNABLE TS_RUNNING runnable enumerator
Dthread_list.cc343 if (thread->GetState() == kRunnable) { in RunCheckpoint()
428 if (thread->GetState() != kRunnable) { in RunEmptyCheckpoint()
517 CHECK_NE(self->GetState(), kRunnable); in RunCheckpointOnRunnableThreads()
551 CHECK_NE(self->GetState(), kRunnable); in FlipThreadRoots()
707 CHECK_NE(self->GetState(), kRunnable); in SuspendAllInternal()
1166 CHECK_NE(self->GetState(), kRunnable); in SuspendSelfForDebugger()
1380 if (thread != self && thread->GetState() == kRunnable) { in SuspendAllDaemonThreadsForShutdown()
1438 CHECK_NE(self->GetState(), kRunnable); in Unregister()
Dsignal_catcher.cc243 DCHECK_NE(self->GetState(), kRunnable); in Run()
Dfault_handler.cc280 if (state != kRunnable) { in IsInGeneratedCode()
Dthread.cc803 CHECK_NE(self->GetState(), kRunnable); in Attach()
1386 if (old_state_and_flags.as_struct.state != kRunnable) { in RequestCheckpoint()
1391 DCHECK_EQ(old_state_and_flags.as_struct.state, kRunnable); in RequestCheckpoint()
1413 if (old_state_and_flags.as_struct.state != kRunnable) { in RequestEmptyCheckpoint()
1420 DCHECK_EQ(old_state_and_flags.as_struct.state, kRunnable); in RequestEmptyCheckpoint()
1442 if (suspend_state != ThreadState::kRunnable) { in Wait()
1492 if (GetState() == ThreadState::kRunnable) { in RequestSynchronousCheckpoint()
1529 while (GetState() == ThreadState::kRunnable) { in RequestSynchronousCheckpoint()
1542 DCHECK_NE(GetState(), ThreadState::kRunnable); in RequestSynchronousCheckpoint()
2254 CHECK_NE(GetState(), kRunnable); in ~Thread()
Dthread.h252 return state_and_flags.as_struct.state != kRunnable && in IsSuspended()
1304 if (old_state == kRunnable && new_state != kRunnable) { in SetStateUnsafe()
Dart_method.cc327 CHECK_EQ(kRunnable, self->GetState()); in Invoke()
Ddebugger.cc864 CHECK_EQ(self->GetState(), kRunnable); in GetMonitorInfo()
2275 case kRunnable: in ToJdwpThreadStatus()
3366 CHECK_EQ(self->GetState(), kRunnable); in ManageDeoptimization()
3374 const ThreadState old_state = self->SetStateUnsafe(kRunnable); in ManageDeoptimization()
3384 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable); in ManageDeoptimization()
4468 if (self->GetState() != kRunnable) { in DdmBroadcast()
Dreflection.cc748 DCHECK_EQ(soa.Self()->GetState(), kRunnable); in BoxPrimitive()
Dclass_linker.cc2808 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.cc369 case art::kRunnable: in GetCurrentContendedMonitor()
412 if (!target->RequestSynchronousCheckpoint(&closure, art::ThreadState::kRunnable)) { in GetCurrentContendedMonitor()
Dti_thread.cc363 case art::ThreadState::kRunnable: in GetJvmtiThreadStateFromInternal()
443 case art::ThreadState::kRunnable: in GetJavaStateFromInternal()
Dti_method.cc801 if (!target->RequestSynchronousCheckpoint(&c, art::ThreadState::kRunnable)) { in GetLocalVariableGeneric()
999 if (!target->RequestSynchronousCheckpoint(&c, art::ThreadState::kRunnable)) { in GetLocalInstance()
Dti_stack.cc930 if (!target->RequestSynchronousCheckpoint(&closure, art::ThreadState::kRunnable)) { in GetOwnedMonitorInfoCommon()
/art/runtime/gc/
Dheap-inl.h54 CHECK_EQ(self->GetState(), kRunnable); in AllocObjectWithAllocator()
Dheap.cc3282 CHECK_NE(self->GetState(), kRunnable); in PreSweepingGcVerification()
/art/runtime/gc/collector/
Dsemi_space.cc182 ThreadState old_state = self_->SetStateUnsafe(kRunnable); in MarkingPhase()
188 CHECK_EQ(self_->SetStateUnsafe(old_state), kRunnable); in MarkingPhase()
/art/runtime/jdwp/
Djdwp_event.cc719 CHECK_NE(self->GetState(), kRunnable); in SetWaitForJdwpToken()
/art/compiler/jni/
Djni_compiler_test.cc456 EXPECT_EQ(kRunnable, Thread::Current()->GetState()); in expectValidThreadState()
/art/compiler/driver/
Dcompiler_driver.cc1566 CHECK_NE(self->GetState(), kRunnable); in ForAllLambda()