Home
last modified time | relevance | path

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

/art/runtime/jdwp/
Djdwp_handler.cc125 static JdwpError VM_Version(JdwpState*, Request*, ExpandBuf* pReply) in VM_Version() argument
129 expandBufAddUtf8String(pReply, version); in VM_Version()
132 expandBufAdd4BE(pReply, 1); in VM_Version()
133 expandBufAdd4BE(pReply, 6); in VM_Version()
136 expandBufAddUtf8String(pReply, "1.6.0"); in VM_Version()
139 expandBufAddUtf8String(pReply, "Dalvik"); in VM_Version()
149 static JdwpError VM_ClassesBySignature(JdwpState*, Request* request, ExpandBuf* pReply) in VM_ClassesBySignature() argument
156 expandBufAdd4BE(pReply, ids.size()); in VM_ClassesBySignature()
167 expandBufAdd1(pReply, type_tag); in VM_ClassesBySignature()
168 expandBufAddRefTypeId(pReply, ids[i]); in VM_ClassesBySignature()
[all …]
Djdwp.h70 static inline void expandBufAddFieldId(ExpandBuf* pReply, FieldId id) { expandBufAdd8BE(pReply, id)… in expandBufAddFieldId() argument
71 static inline void expandBufAddMethodId(ExpandBuf* pReply, MethodId id) { expandBufAdd8BE(pReply, i… in expandBufAddMethodId() argument
72 static inline void expandBufAddObjectId(ExpandBuf* pReply, ObjectId id) { expandBufAdd8BE(pReply, i… in expandBufAddObjectId() argument
73 static inline void expandBufAddRefTypeId(ExpandBuf* pReply, RefTypeId id) { expandBufAdd8BE(pReply,… in expandBufAddRefTypeId() argument
74 static inline void expandBufAddFrameId(ExpandBuf* pReply, FrameId id) { expandBufAdd8BE(pReply, id)… in expandBufAddFrameId() argument
300 size_t ProcessRequest(Request* request, ExpandBuf* pReply, bool* skip_reply);
Djdwp_main.cc128 ssize_t JdwpNetStateBase::WritePacket(ExpandBuf* pReply, size_t length) { in WritePacket() argument
131 DCHECK_LE(length, expandBufGetLength(pReply)); in WritePacket()
132 return TEMP_FAILURE_RETRY(write(clientSock, expandBufGetBuffer(pReply), length)); in WritePacket()
397 ExpandBuf* pReply = expandBufAlloc(); in HandlePacket() local
399 size_t replyLength = ProcessRequest(&request, pReply, &skip_reply); in HandlePacket()
402 cc = netStateBase->WritePacket(pReply, replyLength); in HandlePacket()
406 expandBufFree(pReply); in HandlePacket()
Djdwp_expand_buf.h64 void expandBufAddLocation(ExpandBuf* pReply, const JdwpLocation& location);
Djdwp_priv.h89 ssize_t WritePacket(ExpandBuf* pReply, size_t length) LOCKS_EXCLUDED(socket_lock_);
/art/runtime/
Ddebugger.h287 static JDWP::JdwpError GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply)
289 static JDWP::JdwpError GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply)
291 static JDWP::JdwpError GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply)
300 static JDWP::JdwpError GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply)
313 JDWP::ExpandBuf* pReply)
389 JDWP::ExpandBuf* pReply)
392 JDWP::ExpandBuf* pReply)
395 JDWP::ExpandBuf* pReply)
398 JDWP::ExpandBuf* pReply)
401 JDWP::ExpandBuf* pReply)
[all …]
Ddebugger.cc820 JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { in GetClassLoader() argument
826 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader())); in GetClassLoader()
830 JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { in GetModifiers() argument
846 expandBufAdd4BE(pReply, access_flags); in GetModifiers()
1060 JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) { in GetReflectedType() argument
1068 expandBufAdd1(pReply, type_tag); in GetReflectedType()
1069 expandBufAddRefTypeId(pReply, class_id); in GetReflectedType()
1138 JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) { in GetReferenceType() argument
1148 expandBufAdd1(pReply, type_tag); in GetReferenceType()
1149 expandBufAddRefTypeId(pReply, type_id); in GetReferenceType()
[all …]