Home
last modified time | relevance | path

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

/art/test/ti-agent/
Dsuspension_helper.cc94 JvmtiErrorToException(env, jvmti_env, jvmti_env->SuspendThread(thr)); in Java_art_Suspension_suspend()
Dsuspend_event_helper.cc82 jvmti->SuspendThread(nullptr); in PerformSuspend()
/art/openjdkjvmti/
Dti_thread.h115 static jvmtiError SuspendThread(jvmtiEnv* env, jthread thread);
Dti_thread.cc953 jvmtiError ThreadUtil::SuspendThread([[maybe_unused]] jvmtiEnv* env, jthread thread) { in SuspendThread() function in openjdkjvmti::ThreadUtil
1059 results[i] = env->SuspendThread(threads[i]); in SuspendThreadList()
1065 jvmtiError res = env->SuspendThread(threads[first_current_thread_index]); in SuspendThreadList()
DOpenjdkJvmTi.cc154 static jvmtiError SuspendThread(jvmtiEnv* env, jthread thread) { in SuspendThread() function in openjdkjvmti::JvmtiFunctions
157 return ThreadUtil::SuspendThread(env, thread); in SuspendThread()
1511 JvmtiFunctions::SuspendThread,
/art/runtime/
Dthread_list.h252 bool SuspendThread(Thread* self,
Dthread_list.cc1045 bool ThreadList::SuspendThread(Thread* self, in SuspendThread() function in art::ThreadList
1219 bool success = SuspendThread(self, thread, reason, old_self_state, __func__, 0); in SuspendThreadByPeer()
1244 bool success = SuspendThread(self, thread, reason, old_self_state, __func__, attempt_of_4); in SuspendThreadByThreadId()
Dmutator_gc_coord.md136 : ThreadList provides a number of `SuspendThread...()` calls and
/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()