Home
last modified time | relevance | path

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

/art/runtime/
Dscoped_thread_state_change.h50 if (new_thread_state == kRunnable) { in ScopedThreadStateChange()
52 } else if (old_thread_state_ == kRunnable) { in ScopedThreadStateChange()
71 if (old_thread_state_ == kRunnable) { in LOCKS_EXCLUDED()
73 } else if (thread_state_ == kRunnable) { in LOCKS_EXCLUDED()
174 return self_->GetState() == kRunnable; in IsRunnable()
224 : ScopedObjectAccessAlreadyRunnable(env), tsc_(Self(), kRunnable) { in ScopedObjectAccessUnchecked()
231 : ScopedObjectAccessAlreadyRunnable(self), tsc_(self, kRunnable) { in ScopedObjectAccessUnchecked()
Dthread-inl.h71 DCHECK_NE(new_state, kRunnable); in SetState()
111 DCHECK_NE(new_state, kRunnable); in TransitionFromRunnableToSuspended()
114 DCHECK_EQ(GetState(), kRunnable); in TransitionFromRunnableToSuspended()
145 DCHECK_NE(static_cast<ThreadState>(old_state), kRunnable); in TransitionFromSuspendedToRunnable()
171 new_state_and_flags.as_struct.state = kRunnable; in TransitionFromSuspendedToRunnable()
Dthread_state.h27 kRunnable, // RUNNABLE TS_RUNNING runnable enumerator
Dthread_list.cc180 if (thread->GetState() == kRunnable) { in Run()
258 CHECK_NE(self->GetState(), kRunnable); in RunCheckpoint()
278 if (thread->GetState() == kRunnable) { in RunCheckpoint()
341 CHECK_NE(self->GetState(), kRunnable); in RunCheckpointOnRunnableThreads()
374 CHECK_NE(self->GetState(), kRunnable); in FlipThreadRoots()
466 CHECK_NE(self->GetState(), kRunnable); in SuspendAll()
879 CHECK_NE(self->GetState(), kRunnable); in SuspendSelfForDebugger()
1067 if (thread != self && thread->GetState() == kRunnable) { in SuspendAllDaemonThreads()
1109 CHECK_NE(self->GetState(), kRunnable); in Unregister()
Dsignal_catcher.cc190 DCHECK_NE(self->GetState(), kRunnable); in Run()
Dfault_handler.cc311 if (state != kRunnable) { in IsInGeneratedCode()
Ddebugger.cc694 ThreadState old_state = self->SetStateUnsafe(kRunnable); in GoActive()
695 CHECK_NE(old_state, kRunnable); in GoActive()
701 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable); in GoActive()
718 ThreadState old_state = self->SetStateUnsafe(kRunnable); in Disconnected()
740 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable); in Disconnected()
860 CHECK_EQ(self->GetState(), kRunnable); in GetMonitorInfo()
2202 case kRunnable: in ToJdwpThreadStatus()
3273 CHECK_EQ(self->GetState(), kRunnable); in ManageDeoptimization()
3278 const ThreadState old_state = self->SetStateUnsafe(kRunnable); in ManageDeoptimization()
3288 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable); in ManageDeoptimization()
[all …]
Dart_method.cc377 CHECK_EQ(kRunnable, self->GetState()); in Invoke()
Dthread.cc540 CHECK_NE(self->GetState(), kRunnable); in Attach()
836 if (old_state_and_flags.as_struct.state != kRunnable) { in RequestCheckpoint()
855 DCHECK_EQ(old_state_and_flags.as_struct.state, kRunnable); in RequestCheckpoint()
1437 CHECK_NE(GetState(), kRunnable); in ~Thread()
Dthread.h222 return state_and_flags.as_struct.state != kRunnable && in IsSuspended()
Dreflection.cc717 DCHECK_EQ(soa.Self()->GetState(), kRunnable); in BoxPrimitive()
Dclass_linker.cc1913 DCHECK_EQ(self->GetState(), kRunnable); in DefineClass()
/art/runtime/native/
Dscoped_fast_native_object_access.h36 DCHECK_EQ(Self()->GetState(), kRunnable); in ScopedFastNativeObjectAccess()
Djava_lang_Thread.cc72 case kRunnable: return kJavaRunnable; in Thread_nativeGetStatus()
/art/runtime/gc/collector/
Dsemi_space.cc171 ThreadState old_state = self_->SetStateUnsafe(kRunnable); in MarkingPhase()
177 CHECK_EQ(self_->SetStateUnsafe(old_state), kRunnable); in MarkingPhase()
Dmark_sweep.cc1082 if (thread->GetState() == kRunnable) { in Run()
Dconcurrent_copying.cc307 if (thread->GetState() == kRunnable) { in Run()
/art/runtime/gc/
Dheap-inl.h48 CHECK_EQ(self->GetState(), kRunnable); in AllocObjectWithAllocator()
Dheap.cc1207 if (thread->GetState() == kRunnable) { in Run()
3108 CHECK_NE(self->GetState(), kRunnable); in PreSweepingGcVerification()
/art/runtime/jdwp/
Djdwp_event.cc683 CHECK_NE(self->GetState(), kRunnable); in SetWaitForJdwpToken()
/art/compiler/driver/
Dcompiler_driver.cc1626 CHECK_NE(self->GetState(), kRunnable); in ForAll()