Home
last modified time | relevance | path

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

/dalvik/vm/jdwp/
DJdwpHandler.c73 void dvmJdwpAddLocation(ExpandBuf* pReply, const JdwpLocation* pLoc) in dvmJdwpAddLocation() argument
75 expandBufAdd1(pReply, pLoc->typeTag); in dvmJdwpAddLocation()
76 expandBufAddObjectId(pReply, pLoc->classId); in dvmJdwpAddLocation()
77 expandBufAddMethodId(pReply, pLoc->methodId); in dvmJdwpAddLocation()
78 expandBufAdd8BE(pReply, pLoc->idx); in dvmJdwpAddLocation()
102 static void jdwpWriteValue(ExpandBuf* pReply, int width, u8 value) in jdwpWriteValue() argument
105 case 1: expandBufAdd1(pReply, value); break; in jdwpWriteValue()
106 case 2: expandBufAdd2BE(pReply, value); break; in jdwpWriteValue()
107 case 4: expandBufAdd4BE(pReply, value); break; in jdwpWriteValue()
108 case 8: expandBufAdd8BE(pReply, value); break; in jdwpWriteValue()
[all …]
DJdwp.h61 INLINE void expandBufAddFieldId(ExpandBuf* pReply, FieldId id) { in expandBufAddFieldId() argument
62 expandBufAdd4BE(pReply, id); in expandBufAddFieldId()
64 INLINE void expandBufAddMethodId(ExpandBuf* pReply, MethodId id) { in expandBufAddMethodId() argument
65 expandBufAdd4BE(pReply, id); in expandBufAddMethodId()
67 INLINE void expandBufAddObjectId(ExpandBuf* pReply, ObjectId id) { in expandBufAddObjectId() argument
68 expandBufAdd8BE(pReply, id); in expandBufAddObjectId()
70 INLINE void expandBufAddRefTypeId(ExpandBuf* pReply, RefTypeId id) { in expandBufAddRefTypeId() argument
71 expandBufAdd8BE(pReply, id); in expandBufAddRefTypeId()
73 INLINE void expandBufAddFrameId(ExpandBuf* pReply, FrameId id) { in expandBufAddFrameId() argument
74 expandBufAdd8BE(pReply, id); in expandBufAddFrameId()
DJdwpHandler.h42 const u1* buf, int dataLen, ExpandBuf* pReply);
45 void dvmJdwpAddLocation(ExpandBuf* pReply, const JdwpLocation* pLoc);
DJdwpAdb.c453 ExpandBuf* pReply = expandBufAlloc(); in handlePacket() local
459 dvmJdwpProcessRequest(state, &hdr, buf, dataLen, pReply); in handlePacket()
460 if (expandBufGetLength(pReply) > 0) { in handlePacket()
468 cc = write(netState->clientSock, expandBufGetBuffer(pReply), in handlePacket()
469 expandBufGetLength(pReply)); in handlePacket()
470 if (cc != (int) expandBufGetLength(pReply)) { in handlePacket()
472 expandBufFree(pReply); in handlePacket()
478 expandBufFree(pReply); in handlePacket()
DJdwpSocket.c609 ExpandBuf* pReply = expandBufAlloc(); in handlePacket() local
615 dvmJdwpProcessRequest(state, &hdr, buf, dataLen, pReply); in handlePacket()
616 if (expandBufGetLength(pReply) > 0) { in handlePacket()
624 cc = write(netState->clientSock, expandBufGetBuffer(pReply), in handlePacket()
625 expandBufGetLength(pReply)); in handlePacket()
626 if (cc != (int) expandBufGetLength(pReply)) { in handlePacket()
628 expandBufFree(pReply); in handlePacket()
634 expandBufFree(pReply); in handlePacket()
/dalvik/vm/
DDebugger.c1050 ExpandBuf* pReply) in dvmDbgOutputArray() argument
1070 outBuf = expandBufAddSpace(pReply, count * width); in dvmDbgOutputArray()
1089 expandBufAdd1(pReply, thisTag); in dvmDbgOutputArray()
1090 expandBufAddObjectId(pReply, objectToObjectId(*pObjects)); in dvmDbgOutputArray()
1218 ExpandBuf* pReply) in dvmDbgOutputAllFields() argument
1230 expandBufAdd4BE(pReply, declared); in dvmDbgOutputAllFields()
1235 expandBufAddFieldId(pReply, fieldToFieldId(field)); in dvmDbgOutputAllFields()
1236 expandBufAddUtf8String(pReply, (const u1*) field->name); in dvmDbgOutputAllFields()
1237 expandBufAddUtf8String(pReply, (const u1*) field->signature); in dvmDbgOutputAllFields()
1239 expandBufAddUtf8String(pReply, genericSignature); in dvmDbgOutputAllFields()
[all …]
DDebugger.h188 ExpandBuf* pReply);
203 ExpandBuf* pReply);
205 ExpandBuf* pReply);
206 void dvmDbgOutputAllInterfaces(RefTypeId refTypeId, ExpandBuf* pReply);
208 ExpandBuf* pReply);
210 bool withGeneric, ExpandBuf* pReply);