Lines Matching refs:jvmtiError
98 static jvmtiError GetAllThreads(jvmtiEnv* env, jint* threads_count_ptr, jthread** threads_ptr);
100 static jvmtiError GetCurrentThread(jvmtiEnv* env, jthread* thread_ptr);
102 static jvmtiError GetThreadInfo(jvmtiEnv* env, jthread thread, jvmtiThreadInfo* info_ptr);
104 static jvmtiError GetThreadState(jvmtiEnv* env, jthread thread, jint* thread_state_ptr);
106 static jvmtiError SetThreadLocalStorage(jvmtiEnv* env, jthread thread, const void* data);
107 static jvmtiError GetThreadLocalStorage(jvmtiEnv* env, jthread thread, void** data_ptr);
109 static jvmtiError RunAgentThread(jvmtiEnv* env,
115 static jvmtiError SuspendThread(jvmtiEnv* env, jthread thread);
116 static jvmtiError ResumeThread(jvmtiEnv* env, jthread thread);
118 static jvmtiError SuspendThreadList(jvmtiEnv* env,
121 jvmtiError* results);
122 static jvmtiError ResumeThreadList(jvmtiEnv* env,
125 jvmtiError* results);
127 static jvmtiError StopThread(jvmtiEnv* env, jthread thr, jobject exception);
128 static jvmtiError InterruptThread(jvmtiEnv* env, jthread thr);
138 /*out*/ jvmtiError* err)
147 /*out*/ jvmtiError* err)
182 static jvmtiError SuspendSelf(art::Thread* self)
184 static jvmtiError SuspendOther(art::Thread* self, jthread target_jthread)