Home
last modified time | relevance | path

Searched refs:SuspendThread (Results 1 – 9 of 9) sorted by relevance

/art/test/ti-agent/
Dsuspension_helper.cc93 JvmtiErrorToException(env, jvmti_env, jvmti_env->SuspendThread(thr)); in Java_art_Suspension_suspend()
/art/openjdkjvmti/
Dti_thread.h111 static jvmtiError SuspendThread(jvmtiEnv* env, jthread thread);
Dti_thread.cc936 jvmtiError ThreadUtil::SuspendThread(jvmtiEnv* env ATTRIBUTE_UNUSED, jthread thread) { in SuspendThread() function in openjdkjvmti::ThreadUtil
1043 results[i] = env->SuspendThread(threads[i]); in SuspendThreadList()
1049 jvmtiError res = env->SuspendThread(threads[first_current_thread_index]); in SuspendThreadList()
DOpenjdkJvmTi.cc158 static jvmtiError SuspendThread(jvmtiEnv* env, jthread thread) { in SuspendThread() function in openjdkjvmti::JvmtiFunctions
161 return ThreadUtil::SuspendThread(env, thread); in SuspendThread()
1584 JvmtiFunctions::SuspendThread,
/art/openjdkjvmti/include/
Djvmti.h1023 jvmtiError (JNICALL *SuspendThread) (jvmtiEnv* env,
1814 jvmtiError SuspendThread(jthread thread) { in SuspendThread() function
1815 return functions->SuspendThread(this, thread); in SuspendThread()
/art/test/1953-pop-frame/
Dpop_frame.cc82 jvmti->SuspendThread(nullptr); in PerformSuspend()
/art/runtime/
Ddebugger.h505 static JDWP::JdwpError SuspendThread(JDWP::ObjectId thread_id, bool request_suspension = true)
Ddebugger.cc2465 JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) { in SuspendThread() function in art::Dbg
/art/runtime/jdwp/
Djdwp_handler.cc954 JdwpError result = Dbg::SuspendThread(thread_id); in TR_Suspend()