Home
last modified time | relevance | path

Searched refs:thread_peer (Results 1 – 3 of 3) sorted by relevance

/art/openjdkjvmti/
Dti_thread.cc212 jthread thread_peer; in GetCurrentThread() local
214 thread_peer = nullptr; in GetCurrentThread()
216 thread_peer = soa.AddLocalReference<jthread>(self->GetPeer()); in GetCurrentThread()
219 *thread_ptr = thread_peer; in GetCurrentThread()
/art/runtime/
Dthread.h279 static Thread* Attach(const char* thread_name, bool as_daemon, jobject thread_peer);
307 static Thread* FromManagedThread(Thread* self, ObjPtr<mirror::Object> thread_peer)
Dthread.cc675 Thread* Thread::FromManagedThread(Thread* self, ObjPtr<mirror::Object> thread_peer) { in FromManagedThread() argument
677 Thread* result = reinterpret_cast64<Thread*>(f->GetLong(thread_peer)); in FromManagedThread()
1107 Thread* Thread::Attach(const char* thread_name, bool as_daemon, jobject thread_peer) { in Attach() argument
1112 ObjPtr<mirror::Object> peer = soa.Decode<mirror::Object>(thread_peer); in Attach()