Lines Matching refs:peer
2273 static bool IsInDesiredThreadGroup(mirror::Object* desired_thread_group, mirror::Object* peer)
2281 ObjPtr<mirror::Object> group = thread_group_field->GetObject(peer);
2303 mirror::Object* peer = t->GetPeerFromOtherThread();
2304 if (peer == nullptr) {
2305 // peer might be null if the thread is still starting up. We can't tell the debugger about
2308 // rather than their peer's mirror::Object*, we could fix this.
2312 if (IsInDesiredThreadGroup(thread_group, peer)) {
2313 thread_ids->push_back(gRegistry->Add(peer));
2433 ScopedLocalRef<jobject> peer(self->GetJniEnv(), nullptr);
2437 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id, &error)));
2439 if (peer.get() == nullptr) {
2445 Thread* thread = thread_list->SuspendThreadByPeer(peer.get(),
2461 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id, &error);
2462 CHECK(peer != nullptr) << error;
2466 thread = Thread::FromManagedThread(soa, peer);
2469 LOG(WARNING) << "No such thread for resume: " << peer;