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

  /art/runtime/jdwp/
jdwp_handler.cc 56 static JdwpError WriteTaggedObject(ExpandBuf* reply, ObjectId object_id)
59 JdwpError rc = Dbg::GetObjectTag(object_id, &tag);
67 static JdwpError WriteTaggedObjectList(ExpandBuf* reply, const std::vector<ObjectId>& objects)
71 JdwpError rc = WriteTaggedObject(reply, objects[i]);
85 static JdwpError RequestInvoke(JdwpState*, Request* request,
115 JDWP::JdwpError error = Dbg::PrepareInvokeMethod(request->GetId(), thread_id, object_id,
126 static JdwpError VM_Version(JdwpState*, Request*, ExpandBuf* pReply)
150 static JdwpError VM_ClassesBySignature(JdwpState*, Request* request, ExpandBuf* pReply)
163 JDWP::JdwpError status = Dbg::GetClassInfo(ids[i], &type_tag, &class_status, nullptr);
182 static JdwpError VM_AllThreads(JdwpState*, Request*, ExpandBuf* pReply
    [all...]
jdwp_constants.h 31 enum JdwpError {
90 std::ostream& operator<<(std::ostream& os, const JdwpError& value);
object_registry.h 82 template<typename T> T Get(JDWP::ObjectId id, JDWP::JdwpError* error)
115 mirror::Object* InternalGet(JDWP::ObjectId id, JDWP::JdwpError* error)
object_registry.cc 170 mirror::Object* ObjectRegistry::InternalGet(JDWP::ObjectId id, JDWP::JdwpError* error) {
jdwp_event.cc 186 JdwpError JdwpState::RegisterEvent(JdwpEvent* pEvent) {
212 JdwpError status = Dbg::ConfigureStep(pMod->step.threadId, size, depth);
793 JdwpError error = Dbg::GetThreadName(thread_id, &thread_name);
    [all...]
jdwp.h 278 JdwpError RegisterEvent(JdwpEvent* pEvent)
  /art/runtime/
debugger.h 266 static JDWP::JdwpError GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id)
268 static JDWP::JdwpError GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id)
270 static JDWP::JdwpError GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply)
272 static JDWP::JdwpError GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply)
274 static JDWP::JdwpError GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply)
278 static JDWP::JdwpError GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag,
283 static JDWP::JdwpError GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply)
285 static JDWP::JdwpError GetSignature(JDWP::RefTypeId ref_type_id, std::string* signature)
287 static JDWP::JdwpError GetSourceFile(JDWP::RefTypeId ref_type_id, std::string* source_file)
289 static JDWP::JdwpError GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag
    [all...]
debugger.cc 350 static mirror::Array* DecodeNonNullArray(JDWP::RefTypeId id, JDWP::JdwpError* error)
365 static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError* error)
381 JDWP::JdwpError* error)
709 JDWP::JdwpError error;
732 JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id) {
733 JDWP::JdwpError status;
743 JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id) {
744 JDWP::JdwpError status;
759 JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
760 JDWP::JdwpError error
    [all...]

Completed in 195 milliseconds