HomeSort by relevance Sort by last modified time
    Searched refs:JdwpError (Results 1 - 6 of 6) sorted by null

  /art/runtime/jdwp/
jdwp_handler.cc 65 static JdwpError WriteTaggedObject(ExpandBuf* reply, ObjectId object_id)
68 JdwpError rc = Dbg::GetObjectTag(object_id, tag);
76 static JdwpError WriteTaggedObjectList(ExpandBuf* reply, const std::vector<ObjectId>& objects)
80 JdwpError rc = WriteTaggedObject(reply, objects[i]);
94 static JdwpError FinishInvoke(JdwpState*, Request& request, ExpandBuf* pReply,
127 JdwpError err = Dbg::InvokeMethod(thread_id, object_id, class_id, method_id, arg_count, argValues.get(), argTypes.get(), options, &resultTag, &resultValue, &exceptObjId);
156 JDWP::JdwpError error = Dbg::StringToUtf8(resultValue, &result_string);
169 static JdwpError VM_Version(JdwpState*, Request&, ExpandBuf* pReply)
193 static JdwpError VM_ClassesBySignature(JdwpState*, Request& request, ExpandBuf* pReply)
206 JDWP::JdwpError status = Dbg::GetClassInfo(ids[i], &type_tag, &class_status, NULL)
    [all...]
jdwp_constants.h 31 enum JdwpError {
90 std::ostream& operator<<(std::ostream& os, const JdwpError& value);
jdwp.h 282 JdwpError RegisterEvent(JdwpEvent* pEvent)
jdwp_event.cc 174 JdwpError JdwpState::RegisterEvent(JdwpEvent* pEvent) {
200 JdwpError status = Dbg::ConfigureStep(pMod->step.threadId, size, depth);
798 JdwpError error = Dbg::GetThreadName(thread_id, thread_name);
    [all...]
  /art/runtime/
debugger.h 82 JDWP::JdwpError error;
261 static JDWP::JdwpError GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId& class_object_id)
263 static JDWP::JdwpError GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId& superclass_id)
265 static JDWP::JdwpError GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply)
267 static JDWP::JdwpError GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply)
269 static JDWP::JdwpError GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply)
273 static JDWP::JdwpError GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag,
278 static JDWP::JdwpError GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply)
280 static JDWP::JdwpError GetSignature(JDWP::RefTypeId ref_type_id, std::string* signature)
282 static JDWP::JdwpError GetSourceFile(JDWP::RefTypeId ref_type_id, std::string& source_file
    [all...]
debugger.cc 404 static mirror::Array* DecodeArray(JDWP::RefTypeId id, JDWP::JdwpError& status)
419 static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError& status)
434 static JDWP::JdwpError DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id, Thread*& thread)
863 JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId& class_object_id) {
864 JDWP::JdwpError status;
873 JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId& superclass_id) {
874 JDWP::JdwpError status;
888 JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
897 JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
898 JDWP::JdwpError status
    [all...]

Completed in 143 milliseconds