HomeSort by relevance Sort by last modified time
    Searched refs:pReply (Results 1 - 10 of 10) sorted by null

  /dalvik/vm/jdwp/
JdwpHandler.h 42 const u1* buf, int dataLen, ExpandBuf* pReply);
45 void dvmJdwpAddLocation(ExpandBuf* pReply, const JdwpLocation* pLoc);
JdwpHandler.cpp 56 void dvmJdwpAddLocation(ExpandBuf* pReply, const JdwpLocation* pLoc)
58 expandBufAdd1(pReply, pLoc->typeTag);
59 expandBufAddObjectId(pReply, pLoc->classId);
60 expandBufAddMethodId(pReply, pLoc->methodId);
61 expandBufAdd8BE(pReply, pLoc->idx);
85 static void jdwpWriteValue(ExpandBuf* pReply, int width, u8 value)
88 case 1: expandBufAdd1(pReply, value); break;
89 case 2: expandBufAdd2BE(pReply, value); break;
90 case 4: expandBufAdd4BE(pReply, value); break;
91 case 8: expandBufAdd8BE(pReply, value); break
    [all...]
Jdwp.h 60 INLINE void expandBufAddFieldId(ExpandBuf* pReply, FieldId id) {
61 expandBufAdd4BE(pReply, id);
63 INLINE void expandBufAddMethodId(ExpandBuf* pReply, MethodId id) {
64 expandBufAdd4BE(pReply, id);
66 INLINE void expandBufAddObjectId(ExpandBuf* pReply, ObjectId id) {
67 expandBufAdd8BE(pReply, id);
69 INLINE void expandBufAddRefTypeId(ExpandBuf* pReply, RefTypeId id) {
70 expandBufAdd8BE(pReply, id);
72 INLINE void expandBufAddFrameId(ExpandBuf* pReply, FrameId id) {
73 expandBufAdd8BE(pReply, id)
    [all...]
JdwpAdb.cpp 455 ExpandBuf* pReply = expandBufAlloc();
461 dvmJdwpProcessRequest(state, &hdr, buf, dataLen, pReply);
462 if (expandBufGetLength(pReply) > 0) {
463 ssize_t cc = netState->writePacket(pReply);
465 if (cc != (ssize_t) expandBufGetLength(pReply)) {
467 expandBufFree(pReply);
473 expandBufFree(pReply);
JdwpMain.cpp 45 ssize_t JdwpNetStateBase::writePacket(ExpandBuf* pReply)
48 ssize_t cc = TEMP_FAILURE_RETRY(write(clientSock, expandBufGetBuffer(pReply),
49 expandBufGetLength(pReply)));
JdwpSocket.cpp 613 ExpandBuf* pReply = expandBufAlloc();
619 dvmJdwpProcessRequest(state, &hdr, buf, dataLen, pReply);
620 if (expandBufGetLength(pReply) > 0) {
621 ssize_t cc = netState->writePacket(pReply);
623 if (cc != (ssize_t) expandBufGetLength(pReply)) {
625 expandBufFree(pReply);
631 expandBufFree(pReply);
JdwpPriv.h 129 ssize_t writePacket(ExpandBuf* pReply);
  /dalvik/vm/
Debugger.cpp 990 ExpandBuf* pReply)
1010 outBuf = expandBufAddSpace(pReply, count * width);
1029 expandBufAdd1(pReply, thisTag);
1030 expandBufAddObjectId(pReply, objectToObjectId(*pObjects));
1174 ExpandBuf* pReply)
1180 expandBufAdd4BE(pReply, declared);
1184 expandBufAddFieldId(pReply, fieldToFieldId(field));
1185 expandBufAddUtf8String(pReply, (const u1*) field->name);
1186 expandBufAddUtf8String(pReply, (const u1*) field->signature);
1189 expandBufAddUtf8String(pReply, genericSignature)
    [all...]
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);
  /frameworks/wilhelm/src/itf/
IAndroidEffect.cpp 87 void* pCommand, SLuint32 *replySize, void *pReply) {
93 pCommand, replySize, pReply);

Completed in 148 milliseconds