Searched defs:class_id (Results 1 - 3 of 3) sorted by relevance

/art/runtime/jdwp/
H A Djdwp.h70 RefTypeId class_id; member in struct:art::JDWP::JdwpLocation
H A Djdwp_handler.cc96 RefTypeId class_id, MethodId method_id, bool is_constructor)
103 VLOG(jdwp) << StringPrintf(" class_id=%#llx method_id=%x %s.%s", class_id,
104 method_id, Dbg::GetClassName(class_id).c_str(),
125 JdwpError err = Dbg::InvokeMethod(thread_id, object_id, class_id, method_id, arg_count, argValues.get(), argTypes.get(), options, &resultTag, &resultValue, &exceptObjId);
617 RefTypeId class_id = request.ReadRefTypeId(); local
624 JdwpError rc = Dbg::GetInstances(class_id, max_count, instances);
637 RefTypeId class_id = request.ReadRefTypeId(); local
639 JdwpError status = Dbg::GetSuperclass(class_id, superClassId);
652 RefTypeId class_id local
681 RefTypeId class_id = request.ReadRefTypeId(); local
697 RefTypeId class_id = request.ReadRefTypeId(); local
749 RefTypeId class_id = request.ReadRefTypeId(); local
772 RefTypeId class_id = request.ReadRefTypeId(); local
868 RefTypeId class_id = request.ReadRefTypeId(); local
1286 RefTypeId class_id = request.ReadRefTypeId(); local
[all...]
/art/runtime/
H A Ddebugger.cc594 std::string Dbg::GetClassName(JDWP::RefTypeId class_id) { argument
595 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id);
600 return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id));
779 JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count, std::vector<JDWP::ObjectId>& instances)
782 mirror::Class* c = DecodeClass(class_id, status);
834 JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) { argument
836 mirror::Class* c = DecodeClass(class_id, status);
842 expandBufAddRefTypeId(pReply, class_id);
874 JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag, uint32_t* pStatus, std::string* pDescriptor) { argument
876 mirror::Class* c = DecodeClass(class_id, statu
931 GetSignature(JDWP::RefTypeId class_id, std::string& signature) argument
941 GetSourceFile(JDWP::RefTypeId class_id, std::string& result) argument
1101 CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId& new_object) argument
1125 MatchType(JDWP::RefTypeId instance_class_id, JDWP::RefTypeId class_id) argument
1245 OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) argument
1272 OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) argument
1300 OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) argument
2623 InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id, JDWP::RefTypeId class_id, JDWP::MethodId method_id, uint32_t arg_count, uint64_t* arg_values, JDWP::JdwpTag* arg_types, uint32_t options, JDWP::JdwpTag* pResultTag, uint64_t* pResultValue, JDWP::ObjectId* pExceptionId) argument
[all...]

Completed in 67 milliseconds