Home
last modified time | relevance | path

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

/art/runtime/jdwp/
Djdwp_handler.cc55 static void WriteValue(ExpandBuf* pReply, int width, uint64_t value) { in WriteValue() argument
57 case 1: expandBufAdd1(pReply, value); break; in WriteValue()
58 case 2: expandBufAdd2BE(pReply, value); break; in WriteValue()
59 case 4: expandBufAdd4BE(pReply, value); break; in WriteValue()
60 case 8: expandBufAdd8BE(pReply, value); break; in WriteValue()
94 static JdwpError FinishInvoke(JdwpState*, Request& request, ExpandBuf* pReply, in FinishInvoke() argument
141 expandBufAdd1(pReply, resultTag); in FinishInvoke()
143 WriteValue(pReply, width, resultValue); in FinishInvoke()
145 expandBufAdd1(pReply, JT_OBJECT); in FinishInvoke()
146 expandBufAddObjectId(pReply, exceptObjId); in FinishInvoke()
[all …]
Djdwp.h67 static inline void expandBufAddFieldId(ExpandBuf* pReply, FieldId id) { expandBufAdd4BE(pReply, id)… in expandBufAddFieldId() argument
68 static inline void expandBufAddMethodId(ExpandBuf* pReply, MethodId id) { expandBufAdd4BE(pReply, i… in expandBufAddMethodId() argument
69 static inline void expandBufAddObjectId(ExpandBuf* pReply, ObjectId id) { expandBufAdd8BE(pReply, i… in expandBufAddObjectId() argument
70 static inline void expandBufAddRefTypeId(ExpandBuf* pReply, RefTypeId id) { expandBufAdd8BE(pReply,… in expandBufAddRefTypeId() argument
71 static inline void expandBufAddFrameId(ExpandBuf* pReply, FrameId id) { expandBufAdd8BE(pReply, id)… in expandBufAddFrameId() argument
302 size_t ProcessRequest(Request& request, ExpandBuf* pReply);
Djdwp_main.cc127 ssize_t JdwpNetStateBase::WritePacket(ExpandBuf* pReply, size_t length) { in WritePacket() argument
129 DCHECK_LE(length, expandBufGetLength(pReply)); in WritePacket()
130 return TEMP_FAILURE_RETRY(write(clientSock, expandBufGetBuffer(pReply), length)); in WritePacket()
375 ExpandBuf* pReply = expandBufAlloc(); in HandlePacket() local
376 size_t replyLength = ProcessRequest(request, pReply); in HandlePacket()
377 ssize_t cc = netStateBase->WritePacket(pReply, replyLength); in HandlePacket()
387 expandBufFree(pReply); in HandlePacket()
390 expandBufFree(pReply); in HandlePacket()
Djdwp_expand_buf.h64 void expandBufAddLocation(ExpandBuf* pReply, const JdwpLocation& location);
Djdwp_priv.h72 ssize_t WritePacket(ExpandBuf* pReply, size_t length) LOCKS_EXCLUDED(socket_lock_);
/art/runtime/
Ddebugger.h265 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)
278 static JDWP::JdwpError GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply)
291 JDWP::ExpandBuf* pReply)
367 JDWP::ExpandBuf* pReply)
370 JDWP::ExpandBuf* pReply)
373 JDWP::ExpandBuf* pReply)
376 JDWP::ExpandBuf* pReply)
379 JDWP::ExpandBuf* pReply)
[all …]
Ddebugger.cc888 JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { in GetClassLoader() argument
893 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader())); in GetClassLoader()
897 JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { in GetModifiers() argument
913 expandBufAdd4BE(pReply, access_flags); in GetModifiers()
1134 JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) { in GetReflectedType() argument
1142 expandBufAdd1(pReply, type_tag); in GetReflectedType()
1143 expandBufAddRefTypeId(pReply, class_id); in GetReflectedType()
1212 JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) in GetReferenceType() argument
1222 expandBufAdd1(pReply, type_tag); in GetReferenceType()
1223 expandBufAddRefTypeId(pReply, type_id); in GetReferenceType()
[all …]