Lines Matching refs:class_id
769 std::string Dbg::GetClassName(JDWP::RefTypeId class_id) { in GetClassName() argument
771 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id, &error); in GetClassName()
776 return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id)); in GetClassName()
970 JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count, in GetInstances() argument
976 mirror::Class* c = DecodeClass(class_id, &error); in GetInstances()
1060 JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) { in GetReflectedType() argument
1062 mirror::Class* c = DecodeClass(class_id, &error); in GetReflectedType()
1069 expandBufAddRefTypeId(pReply, class_id); in GetReflectedType()
1102 JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag, in GetClassInfo() argument
1105 mirror::Class* c = DecodeClass(class_id, &error); in GetClassInfo()
1154 JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) { in GetSignature() argument
1156 mirror::Class* c = DecodeClass(class_id, &error); in GetSignature()
1165 JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string* result) { in GetSourceFile() argument
1167 mirror::Class* c = DecodeClass(class_id, &error); in GetSourceFile()
1343 JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId* new_object_id) { in CreateObject() argument
1345 mirror::Class* c = DecodeClass(class_id, &error); in CreateObject()
1426 bool Dbg::MatchType(mirror::Class* event_class, JDWP::RefTypeId class_id) { in MatchType() argument
1431 mirror::Class* expected_class = DecodeClass(class_id, &error); in MatchType()
1460 location->class_id = gRegistry->AddRefType(c); in SetJdwpLocation()
1549 JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::Expand… in OutputDeclaredFields() argument
1551 mirror::Class* c = DecodeClass(class_id, &error); in OutputDeclaredFields()
1575 JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic, in OutputDeclaredMethods() argument
1578 mirror::Class* c = DecodeClass(class_id, &error); in OutputDeclaredMethods()
1606 JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) { in OutputDeclaredInterfaces() argument
1610 Handle<mirror::Class> c(hs.NewHandle(DecodeClass(class_id, &error))); in OutputDeclaredInterfaces()
3840 JDWP::ObjectId object_id, JDWP::RefTypeId class_id, in PrepareInvokeMethod() argument
3902 mirror::Class* c = DecodeClass(class_id, &error); in PrepareInvokeMethod()