Home
last modified time | relevance | path

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

/art/runtime/
Dthread.h119 mirror::Object* thread_peer)
Ddebugger.cc251 mirror::Object* thread_peer = gRegistry->Get<mirror::Object*>(thread_id); in DecodeThread() local
252 if (thread_peer == NULL || thread_peer == ObjectRegistry::kInvalidObject) { in DecodeThread()
258 if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) { in DecodeThread()
263 thread = Thread::FromManagedThread(soa, thread_peer); in DecodeThread()
2412 jobject thread_peer = gRegistry->GetJObject(thread_id); in ScopedThreadSuspension() local
2414 Thread* suspended_thread = Thread::SuspendForDebugger(thread_peer, true, &timed_out); in ScopedThreadSuspension()
Dthread.cc185 mirror::Object* thread_peer) { in FromManagedThread() argument
187 Thread* result = reinterpret_cast<Thread*>(static_cast<uintptr_t>(f->GetInt(thread_peer))); in FromManagedThread()