Lines Matching refs:class_id

841 std::string Dbg::GetClassName(JDWP::RefTypeId class_id) {  in GetClassName()  argument
842 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id); in GetClassName()
847 return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id)); in GetClassName()
1042 JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count, std::vector<JDWP::Ob… in GetInstances() argument
1048 mirror::Class* c = DecodeClass(class_id, status); in GetInstances()
1134 JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) { in GetReflectedType() argument
1136 mirror::Class* c = DecodeClass(class_id, status); in GetReflectedType()
1143 expandBufAddRefTypeId(pReply, class_id); in GetReflectedType()
1176 JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag, in GetClassInfo() argument
1179 mirror::Class* c = DecodeClass(class_id, status); in GetClassInfo()
1228 JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) { in GetSignature() argument
1230 mirror::Class* c = DecodeClass(class_id, status); in GetSignature()
1239 JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string& result) { in GetSourceFile() argument
1241 mirror::Class* c = DecodeClass(class_id, status); in GetSourceFile()
1406 JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId& new_object) { in CreateObject() argument
1408 mirror::Class* c = DecodeClass(class_id, status); in CreateObject()
1470 bool Dbg::MatchType(mirror::Class* event_class, JDWP::RefTypeId class_id) { in MatchType() argument
1475 mirror::Class* expected_class = DecodeClass(class_id, status); in MatchType()
1501 location->class_id = gRegistry->AddRefType(c); in SetJdwpLocation()
1583 JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::Expand… in OutputDeclaredFields() argument
1585 mirror::Class* c = DecodeClass(class_id, status); in OutputDeclaredFields()
1609 JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic, in OutputDeclaredMethods() argument
1612 mirror::Class* c = DecodeClass(class_id, status); in OutputDeclaredMethods()
1636 JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) { in OutputDeclaredInterfaces() argument
1640 Handle<mirror::Class> c(hs.NewHandle(DecodeClass(class_id, status))); in OutputDeclaredInterfaces()
3582 JDWP::RefTypeId class_id, JDWP::MethodId method_id, in InvokeMethod() argument
3642 mirror::Class* c = DecodeClass(class_id, status); in InvokeMethod()