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

  /dalvik/vm/jdwp/
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);
  /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...]

Completed in 114 milliseconds