HomeSort by relevance Sort by last modified time
    Searched refs:thread_peer (Results 1 - 5 of 5) sorted by null

  /art/runtime/openjdkjvmti/
events.cc 211 jthread thread_peer; local
213 thread_peer = nullptr;
215 thread_peer = jni_env->AddLocalReference<jthread>(self->GetPeer());
218 ScopedLocalRef<jthread> thread(jni_env, thread_peer);
ti_thread.cc 151 jthread thread_peer; local
153 thread_peer = nullptr;
155 thread_peer = soa.AddLocalReference<jthread>(self->GetPeer());
158 *thread_ptr = thread_peer;
    [all...]
  /art/runtime/
thread.h 164 static Thread* Attach(const char* thread_name, bool as_daemon, jobject thread_peer);
185 ObjPtr<mirror::Object> thread_peer)
    [all...]
thread.cc 461 ObjPtr<mirror::Object> thread_peer) {
463 Thread* result = reinterpret_cast<Thread*>(static_cast<uintptr_t>(f->GetLong(thread_peer)));
848 Thread* Thread::Attach(const char* thread_name, bool as_daemon, jobject thread_peer) {
854 self->tlsPtr_.opeer = soa.Decode<mirror::Object>(thread_peer).Ptr();
856 self->GetJniEnv()->SetLongField(thread_peer,
    [all...]
debugger.cc 402 mirror::Object* thread_peer = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_id, error); variable
403 if (thread_peer == nullptr) {
411 if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) {
418 Thread* thread = Thread::FromManagedThread(soa, thread_peer);
3697 jobject thread_peer = Dbg::GetObjectRegistry()->GetJObject(thread_id); local
    [all...]

Completed in 61 milliseconds