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

/art/runtime/
H A Dthread_state.h27 kRunnable, // RUNNABLE TS_RUNNING runnable enumerator in enum:art::ThreadState
H A Dscoped_thread_state_change.h50 if (new_thread_state == kRunnable) {
52 } else if (old_thread_state_ == kRunnable) {
71 if (old_thread_state_ == kRunnable) {
73 } else if (thread_state_ == kRunnable) {
174 return self_->GetState() == kRunnable;
224 : ScopedObjectAccessAlreadyRunnable(env), tsc_(Self(), kRunnable) {
231 : ScopedObjectAccessAlreadyRunnable(self), tsc_(self, kRunnable) {
H A Dthread-inl.h71 DCHECK_NE(new_state, kRunnable);
111 DCHECK_NE(new_state, kRunnable);
114 DCHECK_EQ(GetState(), kRunnable); local
145 DCHECK_NE(static_cast<ThreadState>(old_state), kRunnable); local
171 new_state_and_flags.as_struct.state = kRunnable;
H A Dthread_list.cc180 if (thread->GetState() == kRunnable) {
258 CHECK_NE(self->GetState(), kRunnable);
278 if (thread->GetState() == kRunnable) {
341 CHECK_NE(self->GetState(), kRunnable);
374 CHECK_NE(self->GetState(), kRunnable);
466 CHECK_NE(self->GetState(), kRunnable);
879 CHECK_NE(self->GetState(), kRunnable);
1067 if (thread != self && thread->GetState() == kRunnable) {
1109 CHECK_NE(self->GetState(), kRunnable);
H A Dsignal_catcher.cc190 DCHECK_NE(self->GetState(), kRunnable);
H A Dfault_handler.cc311 if (state != kRunnable) {
H A Dart_method.cc377 CHECK_EQ(kRunnable, self->GetState());
H A Dthread.cc540 CHECK_NE(self->GetState(), kRunnable);
836 if (old_state_and_flags.as_struct.state != kRunnable) {
855 DCHECK_EQ(old_state_and_flags.as_struct.state, kRunnable);
1316 // this thread _ever_ entered kRunnable".
1437 CHECK_NE(GetState(), kRunnable); local
H A Ddebugger.cc694 ThreadState old_state = self->SetStateUnsafe(kRunnable);
695 CHECK_NE(old_state, kRunnable);
701 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
713 // to kRunnable to avoid scoped object access transitions. Remove the debugger as a listener
718 ThreadState old_state = self->SetStateUnsafe(kRunnable);
740 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
860 CHECK_EQ(self->GetState(), kRunnable);
2202 case kRunnable:
3273 CHECK_EQ(self->GetState(), kRunnable);
3278 const ThreadState old_state = self->SetStateUnsafe(kRunnable);
[all...]
H A Dreflection.cc717 DCHECK_EQ(soa.Self()->GetState(), kRunnable);
H A Dthread.h222 return state_and_flags.as_struct.state != kRunnable &&
H A Dclass_linker.cc1910 // We must be in the kRunnable state to prevent instrumentation from
1913 DCHECK_EQ(self->GetState(), kRunnable);
/art/runtime/native/
H A Dscoped_fast_native_object_access.h36 DCHECK_EQ(Self()->GetState(), kRunnable);
H A Djava_lang_Thread.cc72 case kRunnable: return kJavaRunnable;
/art/runtime/gc/
H A Dheap-inl.h48 CHECK_EQ(self->GetState(), kRunnable);
H A Dheap.cc1207 if (thread->GetState() == kRunnable) {
3108 CHECK_NE(self->GetState(), kRunnable);
/art/runtime/gc/collector/
H A Dsemi_space.cc171 ThreadState old_state = self_->SetStateUnsafe(kRunnable);
177 CHECK_EQ(self_->SetStateUnsafe(old_state), kRunnable);
H A Dmark_sweep.cc1082 if (thread->GetState() == kRunnable) {
H A Dconcurrent_copying.cc307 if (thread->GetState() == kRunnable) {
/art/runtime/jdwp/
H A Djdwp_event.cc683 CHECK_NE(self->GetState(), kRunnable);
/art/compiler/driver/
H A Dcompiler_driver.cc1626 CHECK_NE(self->GetState(), kRunnable);

Completed in 638 milliseconds