Home
last modified time | relevance | path

Searched defs:pReply (Results 1 – 3 of 3) sorted by relevance

/art/runtime/jdwp/
Djdwp_handler.cc129 static JdwpError VM_Version(JdwpState*, Request*, ExpandBuf* pReply) in VM_Version()
153 static JdwpError VM_ClassesBySignature(JdwpState*, Request* request, ExpandBuf* pReply) in VM_ClassesBySignature()
185 static JdwpError VM_AllThreads(JdwpState*, Request*, ExpandBuf* pReply) in VM_AllThreads()
201 static JdwpError VM_TopLevelThreadGroups(JdwpState*, Request*, ExpandBuf* pReply) in VM_TopLevelThreadGroups()
220 static JdwpError VM_IDSizes(JdwpState*, Request*, ExpandBuf* pReply) in VM_IDSizes()
272 static JdwpError VM_CreateString(JdwpState*, Request* request, ExpandBuf* pReply) in VM_CreateString()
284 static JdwpError VM_ClassPaths(JdwpState*, Request*, ExpandBuf* pReply) in VM_ClassPaths()
355 static JdwpError VM_AllClassesImpl(ExpandBuf* pReply, bool descriptor_and_status, bool generic) in VM_AllClassesImpl()
386 static JdwpError VM_AllClasses(JdwpState*, Request*, ExpandBuf* pReply) in VM_AllClasses()
391 static JdwpError VM_AllClassesWithGeneric(JdwpState*, Request*, ExpandBuf* pReply) in VM_AllClassesWithGeneric()
[all …]
Djdwp.h72 static inline void expandBufAddFieldId(ExpandBuf* pReply, FieldId id) { expandBufAdd8BE(pReply, id)… in expandBufAddFieldId()
73 static inline void expandBufAddMethodId(ExpandBuf* pReply, MethodId id) { expandBufAdd8BE(pReply, i… in expandBufAddMethodId()
74 static inline void expandBufAddObjectId(ExpandBuf* pReply, ObjectId id) { expandBufAdd8BE(pReply, i… in expandBufAddObjectId()
75 static inline void expandBufAddRefTypeId(ExpandBuf* pReply, RefTypeId id) { expandBufAdd8BE(pReply,… in expandBufAddRefTypeId()
76 static inline void expandBufAddFrameId(ExpandBuf* pReply, FrameId id) { expandBufAdd8BE(pReply, id)… in expandBufAddFrameId()
Djdwp_main.cc245 ssize_t JdwpNetStateBase::WritePacket(ExpandBuf* pReply, size_t length) { in WritePacket()
520 ExpandBuf* pReply = expandBufAlloc(); in HandlePacket() local