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

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

Completed in 389 milliseconds