Lines Matching refs:peer
2218 mirror::Object* desired_thread_group, mirror::Object* peer)
2226 mirror::Object* group = thread_group_field->GetObject(peer);
2248 mirror::Object* peer = t->GetPeer();
2249 if (peer == nullptr) {
2250 // peer might be NULL if the thread is still starting up. We can't tell the debugger about
2253 // rather than their peer's mirror::Object*, we could fix this.
2257 if (IsInDesiredThreadGroup(soa, thread_group, peer)) {
2258 thread_ids->push_back(gRegistry->Add(peer));
2372 ScopedLocalRef<jobject> peer(self->GetJniEnv(), NULL);
2375 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id)));
2377 if (peer.get() == NULL) {
2385 Thread* thread = thread_list->SuspendThreadByPeer(peer.get(), request_suspension, true,
2398 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id);
2402 thread = Thread::FromManagedThread(soa, peer);
2405 LOG(WARNING) << "No such thread for resume: " << peer;