HomeSort by relevance Sort by last modified time
    Searched refs:pReply (Results 1 - 8 of 8) 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.c 73 void dvmJdwpAddLocation(ExpandBuf* pReply, const JdwpLocation* pLoc)
75 expandBufAdd1(pReply, pLoc->typeTag);
76 expandBufAddObjectId(pReply, pLoc->classId);
77 expandBufAddMethodId(pReply, pLoc->methodId);
78 expandBufAdd8BE(pReply, pLoc->idx);
102 static void jdwpWriteValue(ExpandBuf* pReply, int width, u8 value)
105 case 1: expandBufAdd1(pReply, value); break;
106 case 2: expandBufAdd2BE(pReply, value); break;
107 case 4: expandBufAdd4BE(pReply, value); break;
108 case 8: expandBufAdd8BE(pReply, value); break
    [all...]
Jdwp.h 61 INLINE void expandBufAddFieldId(ExpandBuf* pReply, FieldId id) {
62 expandBufAdd4BE(pReply, id);
64 INLINE void expandBufAddMethodId(ExpandBuf* pReply, MethodId id) {
65 expandBufAdd4BE(pReply, id);
67 INLINE void expandBufAddObjectId(ExpandBuf* pReply, ObjectId id) {
68 expandBufAdd8BE(pReply, id);
70 INLINE void expandBufAddRefTypeId(ExpandBuf* pReply, RefTypeId id) {
71 expandBufAdd8BE(pReply, id);
73 INLINE void expandBufAddFrameId(ExpandBuf* pReply, FrameId id) {
74 expandBufAdd8BE(pReply, id)
    [all...]
JdwpAdb.c 453 ExpandBuf* pReply = expandBufAlloc();
459 dvmJdwpProcessRequest(state, &hdr, buf, dataLen, pReply);
460 if (expandBufGetLength(pReply) > 0) {
468 cc = write(netState->clientSock, expandBufGetBuffer(pReply),
469 expandBufGetLength(pReply));
470 if (cc != (int) expandBufGetLength(pReply)) {
472 expandBufFree(pReply);
478 expandBufFree(pReply);
JdwpSocket.c 609 ExpandBuf* pReply = expandBufAlloc();
615 dvmJdwpProcessRequest(state, &hdr, buf, dataLen, pReply);
616 if (expandBufGetLength(pReply) > 0) {
624 cc = write(netState->clientSock, expandBufGetBuffer(pReply),
625 expandBufGetLength(pReply));
626 if (cc != (int) expandBufGetLength(pReply)) {
628 expandBufFree(pReply);
634 expandBufFree(pReply);
  /system/media/opensles/libopensles/
IAndroidEffect.c 86 void* pCommand, SLuint32 *replySize, void *pReply) {
92 pCommand, replySize, pReply);
  /dalvik/vm/
Debugger.c 1050 ExpandBuf* pReply)
1070 outBuf = expandBufAddSpace(pReply, count * width);
1089 expandBufAdd1(pReply, thisTag);
1090 expandBufAddObjectId(pReply, objectToObjectId(*pObjects));
1218 ExpandBuf* pReply)
1230 expandBufAdd4BE(pReply, declared);
1235 expandBufAddFieldId(pReply, fieldToFieldId(field));
1236 expandBufAddUtf8String(pReply, (const u1*) field->name);
1237 expandBufAddUtf8String(pReply, (const u1*) field->signature);
1239 expandBufAddUtf8String(pReply, genericSignature)
    [all...]
Debugger.h 188 ExpandBuf* pReply);
203 ExpandBuf* pReply);
205 ExpandBuf* pReply);
206 void dvmDbgOutputAllInterfaces(RefTypeId refTypeId, ExpandBuf* pReply);
208 ExpandBuf* pReply);
210 bool withGeneric, ExpandBuf* pReply);

Completed in 40 milliseconds