/dalvik/vm/jdwp/ |
D | JdwpHandler.cpp | 56 void dvmJdwpAddLocation(ExpandBuf* pReply, const JdwpLocation* pLoc) in dvmJdwpAddLocation() argument 58 expandBufAdd1(pReply, pLoc->typeTag); in dvmJdwpAddLocation() 59 expandBufAddObjectId(pReply, pLoc->classId); in dvmJdwpAddLocation() 60 expandBufAddMethodId(pReply, pLoc->methodId); in dvmJdwpAddLocation() 61 expandBufAdd8BE(pReply, pLoc->idx); in dvmJdwpAddLocation() 85 static void jdwpWriteValue(ExpandBuf* pReply, int width, u8 value) in jdwpWriteValue() argument 88 case 1: expandBufAdd1(pReply, value); break; in jdwpWriteValue() 89 case 2: expandBufAdd2BE(pReply, value); break; in jdwpWriteValue() 90 case 4: expandBufAdd4BE(pReply, value); break; in jdwpWriteValue() 91 case 8: expandBufAdd8BE(pReply, value); break; in jdwpWriteValue() [all …]
|
D | Jdwp.h | 60 INLINE void expandBufAddFieldId(ExpandBuf* pReply, FieldId id) { in expandBufAddFieldId() argument 61 expandBufAdd4BE(pReply, id); in expandBufAddFieldId() 63 INLINE void expandBufAddMethodId(ExpandBuf* pReply, MethodId id) { in expandBufAddMethodId() argument 64 expandBufAdd4BE(pReply, id); in expandBufAddMethodId() 66 INLINE void expandBufAddObjectId(ExpandBuf* pReply, ObjectId id) { in expandBufAddObjectId() argument 67 expandBufAdd8BE(pReply, id); in expandBufAddObjectId() 69 INLINE void expandBufAddRefTypeId(ExpandBuf* pReply, RefTypeId id) { in expandBufAddRefTypeId() argument 70 expandBufAdd8BE(pReply, id); in expandBufAddRefTypeId() 72 INLINE void expandBufAddFrameId(ExpandBuf* pReply, FrameId id) { in expandBufAddFrameId() argument 73 expandBufAdd8BE(pReply, id); in expandBufAddFrameId()
|
D | JdwpHandler.h | 42 const u1* buf, int dataLen, ExpandBuf* pReply); 45 void dvmJdwpAddLocation(ExpandBuf* pReply, const JdwpLocation* pLoc);
|
D | JdwpAdb.cpp | 455 ExpandBuf* pReply = expandBufAlloc(); in handlePacket() local 461 dvmJdwpProcessRequest(state, &hdr, buf, dataLen, pReply); in handlePacket() 462 if (expandBufGetLength(pReply) > 0) { in handlePacket() 463 ssize_t cc = netState->writePacket(pReply); in handlePacket() 465 if (cc != (ssize_t) expandBufGetLength(pReply)) { in handlePacket() 467 expandBufFree(pReply); in handlePacket() 473 expandBufFree(pReply); in handlePacket()
|
D | JdwpMain.cpp | 45 ssize_t JdwpNetStateBase::writePacket(ExpandBuf* pReply) in writePacket() argument 48 ssize_t cc = write(clientSock, expandBufGetBuffer(pReply), in writePacket() 49 expandBufGetLength(pReply)); in writePacket()
|
D | JdwpSocket.cpp | 613 ExpandBuf* pReply = expandBufAlloc(); in handlePacket() local 619 dvmJdwpProcessRequest(state, &hdr, buf, dataLen, pReply); in handlePacket() 620 if (expandBufGetLength(pReply) > 0) { in handlePacket() 621 ssize_t cc = netState->writePacket(pReply); in handlePacket() 623 if (cc != (ssize_t) expandBufGetLength(pReply)) { in handlePacket() 625 expandBufFree(pReply); in handlePacket() 631 expandBufFree(pReply); in handlePacket()
|
D | JdwpPriv.h | 129 ssize_t writePacket(ExpandBuf* pReply);
|
/dalvik/vm/ |
D | Debugger.cpp | 990 ExpandBuf* pReply) in dvmDbgOutputArray() argument 1010 outBuf = expandBufAddSpace(pReply, count * width); in dvmDbgOutputArray() 1029 expandBufAdd1(pReply, thisTag); in dvmDbgOutputArray() 1030 expandBufAddObjectId(pReply, objectToObjectId(*pObjects)); in dvmDbgOutputArray() 1174 ExpandBuf* pReply) in dvmDbgOutputAllFields() argument 1180 expandBufAdd4BE(pReply, declared); in dvmDbgOutputAllFields() 1184 expandBufAddFieldId(pReply, fieldToFieldId(field)); in dvmDbgOutputAllFields() 1185 expandBufAddUtf8String(pReply, (const u1*) field->name); in dvmDbgOutputAllFields() 1186 expandBufAddUtf8String(pReply, (const u1*) field->signature); in dvmDbgOutputAllFields() 1189 expandBufAddUtf8String(pReply, genericSignature); in dvmDbgOutputAllFields() [all …]
|
D | Debugger.h | 187 ExpandBuf* pReply); 202 ExpandBuf* pReply); 204 ExpandBuf* pReply); 205 void dvmDbgOutputAllInterfaces(RefTypeId refTypeId, ExpandBuf* pReply); 207 ExpandBuf* pReply); 209 bool withGeneric, ExpandBuf* pReply); 213 void dvmDbgGetFieldValue(ObjectId objectId, FieldId fieldId, ExpandBuf* pReply); 217 ExpandBuf* pReply);
|