Searched defs:kNative (Results 1 - 2 of 2) sorted by relevance

/art/runtime/
H A Dthread_state.h41 kNative, // RUNNABLE TS_RUNNING running in a JNI native method enumerator in enum:art::ThreadState
H A Druntime.cc236 ScopedThreadStateChange tsc(Thread::Current(), kNative); local
713 // Restore main thread state to kNative as expected by native code.
715 self->TransitionFromRunnableToSuspended(kNative);
815 // Must be in the kNative state for calling native methods.
816 CHECK_EQ(self->GetState(), kNative);
947 // Must be in the kNative state for calling native methods (JNI_OnLoad code).
948 CHECK_EQ(self->GetState(), kNative);
968 self->TransitionFromRunnableToSuspended(kNative);

Completed in 788 milliseconds