Searched refs:pReply (Results 1 – 7 of 7) sorted by relevance
/art/runtime/jdwp/ |
D | jdwp_handler.cc | 129 static JdwpError VM_Version(JdwpState*, Request*, ExpandBuf* pReply) in VM_Version() argument 133 expandBufAddUtf8String(pReply, version); in VM_Version() 136 expandBufAdd4BE(pReply, 1); in VM_Version() 137 expandBufAdd4BE(pReply, 6); in VM_Version() 140 expandBufAddUtf8String(pReply, "1.6.0"); in VM_Version() 143 expandBufAddUtf8String(pReply, "Dalvik"); in VM_Version() 153 static JdwpError VM_ClassesBySignature(JdwpState*, Request* request, ExpandBuf* pReply) in VM_ClassesBySignature() argument 160 expandBufAdd4BE(pReply, ids.size()); in VM_ClassesBySignature() 171 expandBufAdd1(pReply, type_tag); in VM_ClassesBySignature() 172 expandBufAddRefTypeId(pReply, ids[i]); in VM_ClassesBySignature() [all …]
|
D | jdwp.h | 72 static inline void expandBufAddFieldId(ExpandBuf* pReply, FieldId id) { expandBufAdd8BE(pReply, id)… in expandBufAddFieldId() argument 73 static inline void expandBufAddMethodId(ExpandBuf* pReply, MethodId id) { expandBufAdd8BE(pReply, i… in expandBufAddMethodId() argument 74 static inline void expandBufAddObjectId(ExpandBuf* pReply, ObjectId id) { expandBufAdd8BE(pReply, i… in expandBufAddObjectId() argument 75 static inline void expandBufAddRefTypeId(ExpandBuf* pReply, RefTypeId id) { expandBufAdd8BE(pReply,… in expandBufAddRefTypeId() argument 76 static inline void expandBufAddFrameId(ExpandBuf* pReply, FrameId id) { expandBufAdd8BE(pReply, id)… in expandBufAddFrameId() argument 307 size_t ProcessRequest(Request* request, ExpandBuf* pReply, bool* skip_reply)
|
D | jdwp_main.cc | 245 ssize_t JdwpNetStateBase::WritePacket(ExpandBuf* pReply, size_t length) { in WritePacket() argument 246 DCHECK_LE(length, expandBufGetLength(pReply)); in WritePacket() 252 return TEMP_FAILURE_RETRY(write(clientSock, expandBufGetBuffer(pReply), length)); in WritePacket() 520 ExpandBuf* pReply = expandBufAlloc(); in HandlePacket() local 522 size_t replyLength = ProcessRequest(&request, pReply, &skip_reply); in HandlePacket() 525 cc = netStateBase->WritePacket(pReply, replyLength); in HandlePacket() 529 expandBufFree(pReply); in HandlePacket()
|
D | jdwp_expand_buf.h | 64 void expandBufAddLocation(ExpandBuf* pReply, const JdwpLocation& location);
|
D | jdwp_priv.h | 91 ssize_t WritePacket(ExpandBuf* pReply, size_t length) REQUIRES(!socket_lock_);
|
/art/runtime/ |
D | debugger.h | 304 static JDWP::JdwpError GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) 306 static JDWP::JdwpError GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) 308 static JDWP::JdwpError GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) 317 static JDWP::JdwpError GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) 335 JDWP::ExpandBuf* pReply) 411 JDWP::ExpandBuf* pReply) 414 JDWP::ExpandBuf* pReply) 417 JDWP::ExpandBuf* pReply) 420 JDWP::ExpandBuf* pReply) 423 JDWP::ExpandBuf* pReply) [all …]
|
D | debugger.cc | 818 JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { in GetClassLoader() argument 824 expandBufAddObjectId(pReply, gRegistry->Add(c->GetClassLoader())); in GetClassLoader() 828 JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { in GetModifiers() argument 844 expandBufAdd4BE(pReply, access_flags); in GetModifiers() 1065 JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) { in GetReflectedType() argument 1073 expandBufAdd1(pReply, type_tag); in GetReflectedType() 1074 expandBufAddRefTypeId(pReply, class_id); in GetReflectedType() 1137 JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) { in GetReferenceType() argument 1147 expandBufAdd1(pReply, type_tag); in GetReferenceType() 1148 expandBufAddRefTypeId(pReply, type_id); in GetReferenceType() [all …]
|