Home
last modified time | relevance | path

Searched refs:class_id (Results 1 – 8 of 8) sorted by relevance

/art/runtime/jdwp/
Djdwp_handler.cc86 RefTypeId class_id, MethodId method_id, bool is_constructor) in RequestInvoke() argument
95 class_id, method_id, Dbg::GetClassName(class_id).c_str(), in RequestInvoke()
115 class_id, method_id, arg_count, in RequestInvoke()
580 RefTypeId class_id = request->ReadRefTypeId(); in RT_Instances() local
587 JdwpError rc = Dbg::GetInstances(class_id, max_count, &instances); in RT_Instances()
600 RefTypeId class_id = request->ReadRefTypeId(); in CT_Superclass() local
602 JdwpError status = Dbg::GetSuperclass(class_id, &superClassId); in CT_Superclass()
615 RefTypeId class_id = request->ReadRefTypeId(); in CT_SetValues() local
618 UNUSED(class_id); in CT_SetValues()
645 RefTypeId class_id = request->ReadRefTypeId(); in CT_InvokeMethod() local
[all …]
Djdwp_main.cc634 << Dbg::GetClassName(rhs.class_id) << "." << Dbg::GetMethodName(rhs.method_id) in operator <<()
641 lhs.class_id == rhs.class_id && lhs.type_tag == rhs.type_tag; in operator ==()
Djdwp_expand_buf.cc181 expandBufAddObjectId(buf, location.class_id); in expandBufAddLocation()
Djdwp_request.cc147 location.class_id = ReadObjectId("class"); in ReadLocation()
Djdwp_event.cc1150 if (jdwp_catch_location.class_id == 0) { in PostException()
1212 RefTypeId class_id = registry->AddRefType(basket.locationClass); in PostClassPrepare() local
1224 VLOG(jdwp) << StringPrintf(" type=%#" PRIx64, class_id) << " " << signature; in PostClassPrepare()
1250 expandBufAddRefTypeId(pReq, class_id); in PostClassPrepare()
Djdwp.h86 RefTypeId class_id; member
/art/runtime/
Ddebugger.h291 static JDWP::JdwpError GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply)
295 static JDWP::JdwpError GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag,
321 static JDWP::JdwpError CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId* new_object_id)
337 static bool MatchType(mirror::Class* event_class, JDWP::RefTypeId class_id)
368 static JDWP::JdwpError GetInstances(JDWP::RefTypeId class_id, int32_t max_count,
409 static JDWP::JdwpError GetBytecodes(JDWP::RefTypeId class_id, JDWP::MethodId method_id,
638 JDWP::ObjectId object_id, JDWP::RefTypeId class_id,
Ddebugger.cc769 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()
[all …]