Lines Matching refs:peer
2230 mirror::Object* desired_thread_group, mirror::Object* peer)
2238 mirror::Object* group = thread_group_field->GetObject(peer);
2260 mirror::Object* peer = t->GetPeer();
2261 if (peer == nullptr) {
2262 // peer might be NULL if the thread is still starting up. We can't tell the debugger about
2265 // rather than their peer's mirror::Object*, we could fix this.
2269 if (IsInDesiredThreadGroup(soa, thread_group, peer)) {
2270 thread_ids->push_back(gRegistry->Add(peer));
2384 ScopedLocalRef<jobject> peer(self->GetJniEnv(), NULL);
2387 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id)));
2389 if (peer.get() == NULL) {
2397 Thread* thread = thread_list->SuspendThreadByPeer(peer.get(), request_suspension, true,
2410 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id);
2414 thread = Thread::FromManagedThread(soa, peer);
2417 LOG(WARNING) << "No such thread for resume: " << peer;