• Home
  • Raw
  • Download

Lines Matching refs:jthread

94   jthread GetThreadObject(art::Thread* self) REQUIRES_SHARED(art::Locks::mutator_lock_) {  in GetThreadObject()
98 return self->GetJniEnv()->AddLocalReference<jthread>(self->GetPeer()); in GetThreadObject()
104 ScopedLocalRef<jthread> thread(self->GetJniEnv(), GetThreadObject(self)); in Post()
211 jvmtiError ThreadUtil::GetCurrentThread(jvmtiEnv* env ATTRIBUTE_UNUSED, jthread* thread_ptr) { in GetCurrentThread()
216 jthread thread_peer; in GetCurrentThread()
220 thread_peer = soa.AddLocalReference<jthread>(self->GetPeer()); in GetCurrentThread()
228 bool ThreadUtil::GetNativeThread(jthread thread, in GetNativeThread()
244 bool ThreadUtil::GetAliveNativeThread(jthread thread, in GetAliveNativeThread()
258 jvmtiError ThreadUtil::GetThreadInfo(jvmtiEnv* env, jthread thread, jvmtiThreadInfo* info_ptr) { in GetThreadInfo()
564 jthread thread, in GetThreadState()
629 jthread** threads_ptr) { in GetAllThreads()
660 jvmtiError data_result = env->Allocate(peers.size() * sizeof(jthread), &data); in GetAllThreads()
664 jthread* threads = reinterpret_cast<jthread*>(data); in GetAllThreads()
666 threads[i] = soa.AddLocalReference<jthread>(peers[i]); in GetAllThreads()
691 jvmtiError ThreadUtil::SetThreadLocalStorage(jvmtiEnv* env, jthread thread, const void* data) { in SetThreadLocalStorage()
723 jthread thread, in GetThreadLocalStorage()
756 jthread thread;
800 jthread thread, in RunAgentThread()
870 jthread target_jthread) { in SuspendOther()
936 jvmtiError ThreadUtil::SuspendThread(jvmtiEnv* env ATTRIBUTE_UNUSED, jthread thread) { in SuspendThread()
958 jthread thread) { in ResumeThread()
1004 static bool IsCurrentThread(jthread thr) { in IsCurrentThread()
1028 const jthread* threads, in SuspendThreadList()
1062 const jthread* threads, in ResumeThreadList()
1076 jthread thread, in StopThread()
1124 jvmtiError ThreadUtil::InterruptThread(jvmtiEnv* env ATTRIBUTE_UNUSED, jthread thread) { in InterruptThread()