Home
last modified time | relevance | path

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

/art/runtime/jdwp/
Djdwp_handler.cc129 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 …]
Djdwp.h72 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)
Djdwp_main.cc245 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()
Djdwp_expand_buf.h64 void expandBufAddLocation(ExpandBuf* pReply, const JdwpLocation& location);
Djdwp_priv.h91 ssize_t WritePacket(ExpandBuf* pReply, size_t length) REQUIRES(!socket_lock_);
/art/runtime/
Ddebugger.h294 static JDWP::JdwpError GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply)
296 static JDWP::JdwpError GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply)
298 static JDWP::JdwpError GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply)
307 static JDWP::JdwpError GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply)
323 JDWP::ExpandBuf* pReply)
399 JDWP::ExpandBuf* pReply)
402 JDWP::ExpandBuf* pReply)
405 JDWP::ExpandBuf* pReply)
408 JDWP::ExpandBuf* pReply)
411 JDWP::ExpandBuf* pReply)
[all …]