Home
last modified time | relevance | path

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

/art/runtime/
Dscoped_thread_state_change.h48 if (new_thread_state == kRunnable) { in ScopedThreadStateChange()
50 } else if (old_thread_state_ == kRunnable) { in ScopedThreadStateChange()
69 if (old_thread_state_ == kRunnable) { in LOCKS_EXCLUDED()
71 } else if (thread_state_ == kRunnable) { in LOCKS_EXCLUDED()
180 return self_->GetState() == kRunnable; in IsRunnable()
230 : ScopedObjectAccessAlreadyRunnable(env), tsc_(Self(), kRunnable) { in ScopedObjectAccessUnchecked()
237 : ScopedObjectAccessAlreadyRunnable(self), tsc_(self, kRunnable) { in ScopedObjectAccessUnchecked()
Dthread-inl.h51 DCHECK_NE(new_state, kRunnable); in SetState()
82 DCHECK_NE(new_state, kRunnable); in TransitionFromRunnableToSuspended()
85 DCHECK_EQ(GetState(), kRunnable); in TransitionFromRunnableToSuspended()
116 DCHECK_NE(static_cast<ThreadState>(old_state), kRunnable); in TransitionFromSuspendedToRunnable()
142 new_state_and_flags.as_struct.state = kRunnable; in TransitionFromSuspendedToRunnable()
Dsignal_catcher.cc136 ThreadState old_state = self->SetStateUnsafe(kRunnable); in HandleSigQuit()
158 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable); in HandleSigQuit()
203 DCHECK_NE(self->GetState(), kRunnable); in Run()
Dthread_state.h25 kRunnable, // RUNNABLE TS_RUNNING runnable enumerator
Dthread_list.cc204 CHECK_NE(self->GetState(), kRunnable); in RunCheckpoint()
224 if (thread->GetState() == kRunnable) { in RunCheckpoint()
282 CHECK_NE(self->GetState(), kRunnable); in RunCheckpointOnRunnableThreads()
319 CHECK_NE(self->GetState(), kRunnable); in SuspendAll()
667 CHECK_NE(self->GetState(), kRunnable); in SuspendSelfForDebugger()
844 if (thread != self && thread->GetState() == kRunnable) { in SuspendAllDaemonThreads()
Dfault_handler.cc214 if (state != kRunnable) { in IsInGeneratedCode()
Ddebugger.cc772 ThreadState old_state = self->SetStateUnsafe(kRunnable); in GoActive()
773 CHECK_NE(old_state, kRunnable); in GoActive()
779 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable); in GoActive()
796 ThreadState old_state = self->SetStateUnsafe(kRunnable); in Disconnected()
821 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable); in Disconnected()
927 CHECK_EQ(self->GetState(), kRunnable); in GetMonitorInfo()
2150 case kRunnable: in ToJdwpThreadStatus()
3124 CHECK_EQ(self->GetState(), kRunnable); in ManageDeoptimization()
3129 const ThreadState old_state = self->SetStateUnsafe(kRunnable); in ManageDeoptimization()
3139 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable); in ManageDeoptimization()
[all …]
Dthread.cc396 CHECK_NE(self->GetState(), kRunnable); in Attach()
703 if (old_state_and_flags.as_struct.state != kRunnable) { in RequestCheckpoint()
722 DCHECK_EQ(old_state_and_flags.as_struct.state, kRunnable); in RequestCheckpoint()
1221 CHECK_NE(GetState(), kRunnable); in ~Thread()
Dreflection.cc670 DCHECK_EQ(soa.Self()->GetState(), kRunnable); in BoxPrimitive()
Dthread.h200 return state_and_flags.as_struct.state != kRunnable && in IsSuspended()
/art/runtime/native/
Dscoped_fast_native_object_access.h36 DCHECK_EQ(Self()->GetState(), kRunnable); in ScopedFastNativeObjectAccess()
Djava_lang_Thread.cc70 case kRunnable: return kJavaRunnable; in Thread_nativeGetStatus()
/art/runtime/gc/
Dheap-inl.h46 CHECK_EQ(self->GetState(), kRunnable); in AllocObjectWithAllocator()
Dheap.cc2783 CHECK_NE(self->GetState(), kRunnable); in PreSweepingGcVerification()
/art/runtime/gc/collector/
Dsemi_space.cc170 ThreadState old_state = self_->SetStateUnsafe(kRunnable); in MarkingPhase()
176 CHECK_EQ(self_->SetStateUnsafe(old_state), kRunnable); in MarkingPhase()
/art/runtime/mirror/
Dart_method.cc272 CHECK_EQ(kRunnable, self->GetState()); in Invoke()
/art/compiler/driver/
Dcompiler_driver.cc1500 CHECK_NE(self->GetState(), kRunnable); in ForAll()