Home
last modified time | relevance | path

Searched refs:thread_state_ptr (Results 1 – 4 of 4) sorted by relevance

/art/openjdkjvmti/
Dti_thread.h104 static jvmtiError GetThreadState(jvmtiEnv* env, jthread thread, jint* thread_state_ptr);
Dti_thread.cc572 jint* thread_state_ptr) { in GetThreadState() argument
573 if (thread_state_ptr == nullptr) { in GetThreadState()
601 *thread_state_ptr = jvmti_state | java_state; in GetThreadState()
630 *thread_state_ptr = started ? kTerminatedState : kStartedState; in GetThreadState()
DOpenjdkJvmTi.cc145 static jvmtiError GetThreadState(jvmtiEnv* env, jthread thread, jint* thread_state_ptr) { in GetThreadState() argument
147 return ThreadUtil::GetThreadState(env, thread, thread_state_ptr); in GetThreadState()
/art/openjdkjvmti/include/
Djvmti.h1088 jint* thread_state_ptr);
1801 jint* thread_state_ptr) { in GetThreadState()
1802 return functions->GetThreadState(this, thread, thread_state_ptr); in GetThreadState()