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

/art/runtime/jdwp/
H A Djdwp.h83 RefTypeId class_id; member in struct:art::JDWP::JdwpLocation
H A Djdwp_event.cc1192 if (jdwp_catch_location.class_id == 0) {
1266 RefTypeId class_id = registry->AddRefType(basket.locationClass); local
1278 VLOG(jdwp) << StringPrintf(" type=%#" PRIx64, class_id) << " " << signature;
1304 expandBufAdd8BE(pReq, class_id);
H A Djdwp_handler.cc96 RefTypeId class_id, MethodId method_id, bool is_constructor)
104 VLOG(jdwp) << StringPrintf(" class_id=%#" PRIx64 " method_id=%x %s.%s", class_id,
105 method_id, Dbg::GetClassName(class_id).c_str(),
127 JdwpError err = Dbg::InvokeMethod(thread_id, object_id, class_id, method_id, arg_count, argValues.get(), argTypes.get(), options, &resultTag, &resultValue, &exceptObjId);
626 RefTypeId class_id = request.ReadRefTypeId(); local
633 JdwpError rc = Dbg::GetInstances(class_id, max_count, instances);
646 RefTypeId class_id = request.ReadRefTypeId(); local
648 JdwpError status = Dbg::GetSuperclass(class_id, superClassId);
661 RefTypeId class_id local
690 RefTypeId class_id = request.ReadRefTypeId(); local
706 RefTypeId class_id = request.ReadRefTypeId(); local
758 RefTypeId class_id = request.ReadRefTypeId(); local
781 RefTypeId class_id = request.ReadRefTypeId(); local
877 RefTypeId class_id = request.ReadRefTypeId(); local
1279 RefTypeId class_id = request.ReadRefTypeId(); local
[all...]
/art/runtime/
H A Ddebugger.cc841 std::string Dbg::GetClassName(JDWP::RefTypeId class_id) { argument
842 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id);
847 return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id));
1042 JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count, std::vector<JDWP::ObjectId>& instances)
1048 mirror::Class* c = DecodeClass(class_id, status);
1134 JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) { argument
1136 mirror::Class* c = DecodeClass(class_id, status);
1143 expandBufAddRefTypeId(pReply, class_id);
1176 JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag, argument
1179 mirror::Class* c = DecodeClass(class_id, statu
1228 GetSignature(JDWP::RefTypeId class_id, std::string* signature) argument
1239 GetSourceFile(JDWP::RefTypeId class_id, std::string& result) argument
1406 CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId& new_object) argument
1470 MatchType(mirror::Class* event_class, JDWP::RefTypeId class_id) argument
1583 OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) argument
1609 OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) argument
1636 OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) argument
3581 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 83 milliseconds