Home
last modified time | relevance | path

Searched refs:IsInterrupted (Results 1 – 7 of 7) sorted by relevance

/art/runtime/native/
Djava_lang_Thread.cc47 return (thread != nullptr) ? thread->IsInterrupted() : JNI_FALSE; in Thread_isInterrupted()
/art/openjdkjvmti/
Dti_monitor.cc318 if (self->IsInterrupted()) { in RawMonitorWait()
Dti_thread.cc417 if (state.native_thread->IsInterrupted()) { in GetJvmtiThreadStateFromInternal()
/art/openjdkjvm/
DOpenjdkJvm.cc393 return (thread != nullptr) ? thread->IsInterrupted() : JNI_FALSE; in JVM_IsInterrupted()
/art/runtime/
Dmonitor.cc895 if (self->IsInterrupted()) { in Wait()
905 was_interrupted = self->IsInterrupted(); in Wait()
Dthread.h582 bool IsInterrupted();
Dthread.cc2630 bool Thread::IsInterrupted() { in IsInterrupted() function in art::Thread