Home | History | Annotate | Download | only in vm

Lines Matching refs:pReply

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);
1240 expandBufAdd4BE(pReply, field->accessFlags);
1245 expandBufAddFieldId(pReply, fieldToFieldId(field));
1246 expandBufAddUtf8String(pReply, (const u1*) field->name);
1247 expandBufAddUtf8String(pReply, (const u1*) field->signature);
1249 expandBufAddUtf8String(pReply, genericSignature);
1250 expandBufAdd4BE(pReply, field->accessFlags);
1260 ExpandBuf* pReply)
1275 expandBufAdd4BE(pReply, declared);
1280 expandBufAddMethodId(pReply, methodToMethodId(meth));
1281 expandBufAddUtf8String(pReply, (const u1*) meth->name);
1283 expandBufAddUtf8String(pReply,
1288 expandBufAddUtf8String(pReply, genericSignature);
1289 expandBufAdd4BE(pReply, meth->accessFlags);
1294 expandBufAddMethodId(pReply, methodToMethodId(meth));
1295 expandBufAddUtf8String(pReply, (const u1*) meth->name);
1297 expandBufAddUtf8String(pReply,
1302 expandBufAddUtf8String(pReply, genericSignature);
1303 expandBufAdd4BE(pReply, meth->accessFlags);
1312 void dvmDbgOutputAllInterfaces(RefTypeId refTypeId, ExpandBuf* pReply)
1326 expandBufAdd4BE(pReply, count);
1329 expandBufAddRefTypeId(pReply, classObjectToRefTypeId(iface));
1335 ExpandBuf* pReply;
1344 expandBufAdd8BE(pContext->pReply, address);
1345 expandBufAdd4BE(pContext->pReply, lineNum);
1357 ExpandBuf* pReply)
1374 expandBufAdd8BE(pReply, start);
1375 expandBufAdd8BE(pReply, end);
1378 size_t numLinesOffset = expandBufGetLength(pReply);
1379 expandBufAdd4BE(pReply, 0);
1381 context.pReply = pReply;
1390 set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems);
1446 expandBufAdd8BE(pContext->pReply, startAddress);
1447 expandBufAddUtf8String(pContext->pReply, (const u1*)name);
1448 expandBufAddUtf8String(pContext->pReply, (const u1*)descriptor);
1450 expandBufAddUtf8String(pContext->pReply, (const u1*) signature);
1452 expandBufAdd4BE(pContext->pReply, endAddress - startAddress);
1453 expandBufAdd4BE(pContext->pReply, reg);
1463 bool withGeneric, ExpandBuf* pReply)
1472 expandBufAdd4BE(pReply, method->insSize);
1475 size_t numLocalsOffset = expandBufGetLength(pReply);
1476 expandBufAdd4BE(pReply, 0);
1478 context.pReply = pReply;
1487 set4BE(expandBufGetBuffer(pReply) + numLocalsOffset, context.numItems);