Lines Matching refs:class_id
829 std::string Dbg::GetClassName(JDWP::RefTypeId class_id) { in GetClassName() argument
830 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id); in GetClassName()
835 return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id)); in GetClassName()
1030 JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count, std::vector<JDWP::Ob… in GetInstances() argument
1036 mirror::Class* c = DecodeClass(class_id, status); in GetInstances()
1122 JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) { in GetReflectedType() argument
1124 mirror::Class* c = DecodeClass(class_id, status); in GetReflectedType()
1131 expandBufAddRefTypeId(pReply, class_id); in GetReflectedType()
1164 JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag, in GetClassInfo() argument
1167 mirror::Class* c = DecodeClass(class_id, status); in GetClassInfo()
1216 JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) { in GetSignature() argument
1218 mirror::Class* c = DecodeClass(class_id, status); in GetSignature()
1227 JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string& result) { in GetSourceFile() argument
1229 mirror::Class* c = DecodeClass(class_id, status); in GetSourceFile()
1394 JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId& new_object) { in CreateObject() argument
1396 mirror::Class* c = DecodeClass(class_id, status); in CreateObject()
1458 bool Dbg::MatchType(mirror::Class* event_class, JDWP::RefTypeId class_id) { in MatchType() argument
1463 mirror::Class* expected_class = DecodeClass(class_id, status); in MatchType()
1489 location->class_id = gRegistry->AddRefType(c); in SetJdwpLocation()
1571 JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::Expand… in OutputDeclaredFields() argument
1573 mirror::Class* c = DecodeClass(class_id, status); in OutputDeclaredFields()
1597 JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic, in OutputDeclaredMethods() argument
1600 mirror::Class* c = DecodeClass(class_id, status); in OutputDeclaredMethods()
1624 JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) { in OutputDeclaredInterfaces() argument
1628 Handle<mirror::Class> c(hs.NewHandle(DecodeClass(class_id, status))); in OutputDeclaredInterfaces()
3474 JDWP::RefTypeId class_id, JDWP::MethodId method_id, in InvokeMethod() argument
3534 mirror::Class* c = DecodeClass(class_id, status); in InvokeMethod()