Home | History | Annotate | Download | only in openjdkjvmti

Lines Matching refs:jvmtiError

60   static jvmtiError GetAllThreads(jvmtiEnv* env, jint* threads_count_ptr, jthread** threads_ptr);
62 static jvmtiError GetCurrentThread(jvmtiEnv* env, jthread* thread_ptr);
64 static jvmtiError GetThreadInfo(jvmtiEnv* env, jthread thread, jvmtiThreadInfo* info_ptr);
66 static jvmtiError GetThreadState(jvmtiEnv* env, jthread thread, jint* thread_state_ptr);
68 static jvmtiError SetThreadLocalStorage(jvmtiEnv* env, jthread thread, const void* data);
69 static jvmtiError GetThreadLocalStorage(jvmtiEnv* env, jthread thread, void** data_ptr);
71 static jvmtiError RunAgentThread(jvmtiEnv* env,
77 static jvmtiError SuspendThread(jvmtiEnv* env, jthread thread);
78 static jvmtiError ResumeThread(jvmtiEnv* env, jthread thread);
80 static jvmtiError SuspendThreadList(jvmtiEnv* env,
83 jvmtiError* results);
84 static jvmtiError ResumeThreadList(jvmtiEnv* env,
87 jvmtiError* results);
99 static jvmtiError SuspendSelf(art::Thread* self)
101 static jvmtiError SuspendOther(art::Thread* self, jthread target_jthread, art::Thread* target)