Home
last modified time | relevance | path

Searched refs:JdwpError (Results 1 – 6 of 6) sorted by relevance

/art/runtime/jdwp/
Djdwp_handler.cc65 static JdwpError WriteTaggedObject(ExpandBuf* reply, ObjectId object_id) in WriteTaggedObject()
68 JdwpError rc = Dbg::GetObjectTag(object_id, tag); in WriteTaggedObject()
76 static JdwpError WriteTaggedObjectList(ExpandBuf* reply, const std::vector<ObjectId>& objects) in WriteTaggedObjectList()
80 JdwpError rc = WriteTaggedObject(reply, objects[i]); in WriteTaggedObjectList()
94 static JdwpError FinishInvoke(JdwpState*, Request& request, ExpandBuf* pReply, in FinishInvoke()
127JdwpError err = Dbg::InvokeMethod(thread_id, object_id, class_id, method_id, arg_count, argValues.… in FinishInvoke()
156 JDWP::JdwpError error = Dbg::StringToUtf8(resultValue, &result_string); in FinishInvoke()
169 static JdwpError VM_Version(JdwpState*, Request&, ExpandBuf* pReply) in VM_Version()
193 static JdwpError VM_ClassesBySignature(JdwpState*, Request& request, ExpandBuf* pReply) in VM_ClassesBySignature()
206 JDWP::JdwpError status = Dbg::GetClassInfo(ids[i], &type_tag, &class_status, NULL); in VM_ClassesBySignature()
[all …]
Djdwp_constants.h31 enum JdwpError { enum
90 std::ostream& operator<<(std::ostream& os, const JdwpError& value);
Djdwp_event.cc174 JdwpError JdwpState::RegisterEvent(JdwpEvent* pEvent) { in RegisterEvent()
200 JdwpError status = Dbg::ConfigureStep(pMod->step.threadId, size, depth); in RegisterEvent()
798 JdwpError error = Dbg::GetThreadName(thread_id, thread_name); in LogMatchingEventsAndThread()
Djdwp.h282 JdwpError RegisterEvent(JdwpEvent* pEvent)
/art/runtime/
Ddebugger.h82 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 …]
Ddebugger.cc404 static mirror::Array* DecodeArray(JDWP::RefTypeId id, JDWP::JdwpError& status) in DecodeArray()
419 static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError& status) in DecodeClass()
434 static JDWP::JdwpError DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id, Thr… in DecodeThread()
863 JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId& class_object_id) { in GetClassObject()
864 JDWP::JdwpError status; in GetClassObject()
873 JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId& superclass_id) { in GetSuperclass()
874 JDWP::JdwpError status; in GetSuperclass()
888 JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { in GetClassLoader()
897 JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { in GetModifiers()
898 JDWP::JdwpError status; in GetModifiers()
[all …]