Lines Matching refs:gRegistry
327 ObjectRegistry* Dbg::gRegistry = nullptr; member in art::Dbg
564 CHECK(gRegistry == nullptr); in StartJdwp()
565 gRegistry = new ObjectRegistry; in StartJdwp()
602 delete gRegistry; in StopJdwp()
603 gRegistry = nullptr; in StopJdwp()
748 gRegistry->Clear(); in Disconnected()
775 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id, &error); in GetClassName()
804 *class_object_id = gRegistry->Add(c); in GetClassObject()
819 *superclass_id = gRegistry->Add(c->GetSuperClass()); in GetSuperclass()
830 expandBufAddObjectId(pReply, gRegistry->Add(c->GetClassLoader())); in GetClassLoader()
857 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); in GetMonitorInfo()
873 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeerFromOtherThread())); in GetMonitorInfo()
875 expandBufAddObjectId(reply, gRegistry->Add(nullptr)); in GetMonitorInfo()
880 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeerFromOtherThread())); in GetMonitorInfo()
911 visitor->monitors->push_back(gRegistry->Add(owned_monitor)); in GetOwnedMonitors()
950 *contended_monitor = gRegistry->Add(contended_monitor_obj); in GetContendedMonitor()
992 instances->push_back(gRegistry->Add(raw_instances[i].Get())); in GetInstances()
1002 ObjPtr<mirror::Object> o = gRegistry->Get<mirror::Object*>(object_id, &error); in GetReferringObjects()
1010 referring_objects->push_back(gRegistry->Add(raw_instances[i].Get())); in GetReferringObjects()
1017 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); in DisableCollection()
1021 gRegistry->DisableCollection(object_id); in DisableCollection()
1027 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); in EnableCollection()
1035 gRegistry->EnableCollection(object_id); in EnableCollection()
1048 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); in IsCollected()
1050 *is_collected = gRegistry->IsCollected(object_id); in IsCollected()
1056 gRegistry->DisposeObject(object_id, reference_count); in DisposeObject()
1138 ids->push_back(gRegistry->Add(c)); in FindLoadedClassBySignature()
1144 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); in GetReferenceType()
1150 JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass()); in GetReferenceType()
1203 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); in GetObjectTag()
1291 expandBufAddObjectId(pReply, gRegistry->Add(element)); in OutputArray()
1339 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error); in SetArrayElements()
1364 *new_string_id = gRegistry->Add(new_string); in CreateString()
1391 *new_object_id = gRegistry->Add(new_object.Ptr()); in CreateObject()
1418 *new_array_id = gRegistry->Add(new_array); in CreateArrayObject()
1445 mirror::Object* expected_thread_peer = gRegistry->Get<mirror::Object*>( in MatchThread()
1480 mirror::Object* modifier_instance = gRegistry->Get<mirror::Object*>(expected_instance_id, &error); in MatchInstance()
1490 location->class_id = gRegistry->AddRefType(c); in SetJdwpLocation()
1665 expandBufAddRefTypeId(pReply, gRegistry->AddRefType(interface)); in OutputDeclaredInterfaces()
2052 mirror::Object* obj = gRegistry->Get<mirror::Object*>(string_id, &error); in StringToUtf8()
2090 expandBufAddObjectId(pReply, gRegistry->Add(value)); in OutputJValue()
2103 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error); in GetThreadName()
2117 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error); in GetThreadGroup()
2135 JDWP::ObjectId thread_group_id = gRegistry->Add(group); in GetThreadGroup()
2196 JDWP::ObjectId parent_group_id = gRegistry->Add(parent); in GetThreadGroupParent()
2267 return gRegistry->Add(group); in GetSystemThreadGroupId()
2397 thread_ids->push_back(gRegistry->Add(peer)); in GetThreads()
2500 return gRegistry->Add(thread->GetPeerFromOtherThread()); in GetThreadId()
2521 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id, &error))); in SuspendThread()
2545 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id, &error); in ResumeThread()
2607 *result = gRegistry->Add(visitor.this_object); in GetThisObject()
2786 JDWP::SetObjectId(buf + 1, gRegistry->Add(o)); in GetLocalValue()
2911 mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value), in SetLocalValue()
4041 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id, &error); in PrepareInvokeMethod()
4046 gRegistry->Get<mirror::Object*>(thread_id, &error); in PrepareInvokeMethod()
4091 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i], &error); in PrepareInvokeMethod()
4101 v.l = gRegistry->GetJObject(arg_values[i]); in PrepareInvokeMethod()
4218 JDWP::ObjectId exceptionObjectId = gRegistry->Add(exception); in ExecuteMethodWithoutPendingException()
4234 result_value = gRegistry->Add(object_result.Get()); in ExecuteMethodWithoutPendingException()
4249 result_value = gRegistry->Add(decoded_ref); in ExecuteMethodWithoutPendingException()