Lines Matching refs:pReply
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);
1191 expandBufAdd4BE(pReply, augmentedAccessFlags(field->accessFlags));
1195 expandBufAddFieldId(pReply, fieldToFieldId(field));
1196 expandBufAddUtf8String(pReply, (const u1*) field->name);
1197 expandBufAddUtf8String(pReply, (const u1*) field->signature);
1200 expandBufAddUtf8String(pReply, genericSignature);
1202 expandBufAdd4BE(pReply, augmentedAccessFlags(field->accessFlags));
1212 ExpandBuf* pReply)
1227 expandBufAdd4BE(pReply, declared);
1232 expandBufAddMethodId(pReply, methodToMethodId(meth));
1233 expandBufAddUtf8String(pReply
1235 expandBufAddUtf8String(pReply,
1240 expandBufAddUtf8String(pReply, genericSignature);
1241 expandBufAdd4BE(pReply, augmentedAccessFlags(meth->accessFlags));
1246 expandBufAddMethodId(pReply, methodToMethodId(meth));
1247 expandBufAddUtf8String(pReply, (const u1*) meth->name);
1249 expandBufAddUtf8String(pReply,
1254 expandBufAddUtf8String(pReply, genericSignature);
1255 expandBufAdd4BE(pReply, augmentedAccessFlags(meth->accessFlags));
1264 void dvmDbgOutputAllInterfaces(RefTypeId refTypeId, ExpandBuf* pReply)
1273 expandBufAdd4BE(pReply, count);
1276 expandBufAddRefTypeId(pReply, classObjectToRefTypeId(iface));
1282 ExpandBuf* pReply;
1291 expandBufAdd8BE(pContext->pReply, address);
1292 expandBufAdd4BE(pContext->pReply, lineNum);
1304 ExpandBuf* pReply)
1321 expandBufAdd8BE(pReply, start);
1322 expandBufAdd8BE(pReply, end);
1325 size_t numLinesOffset = expandBufGetLength(pReply);
1326 expandBufAdd4BE(pReply, 0);
1328 context.pReply = pReply;
1337 set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems);
1393 expandBufAdd8BE(pContext->pReply, startAddress);
1394 expandBufAddUtf8String(pContext->pReply, (const u1*)name);
1395 expandBufAddUtf8String(pContext->pReply, (const u1*)descriptor);
1397 expandBufAddUtf8String(pContext->pReply, (const u1*) signature);
1399 expandBufAdd4BE(pContext->pReply, endAddress - startAddress);
1400 expandBufAdd4BE(pContext->pReply, reg);
1410 bool withGeneric, ExpandBuf* pReply)
1419 expandBufAdd4BE(pReply, method->insSize);
1422 size_t numLocalsOffset = expandBufGetLength(pReply);
1423 expandBufAdd4BE(pReply, 0);
1425 context.pReply = pReply;
1434 set4BE(expandBufGetBuffer(pReply) + numLocalsOffset, context.numItems);
1463 void dvmDbgGetFieldValue(ObjectId objectId, FieldId fieldId, ExpandBuf* pReply)
1473 expandBufAdd1(pReply, tag);
1474 expandBufAddObjectId(pReply, objectToObjectId(objVal));
1478 expandBufAdd1(pReply, tag);
1482 expandBufAdd1(pReply, dvmGetFieldBoolean(obj, ifield->byteOffset));
1485 expandBufAdd1(pReply, dvmGetFieldByte(obj, ifield->byteOffset));
1488 expandBufAdd2BE(pReply, dvmGetFieldShort(obj, ifield->byteOffset));
1491 expandBufAdd2BE(pReply, dvmGetFieldChar(obj, ifield->byteOffset));
1495 expandBufAdd4BE(pReply, dvmGetFieldInt(obj, ifield->byteOffset));
1499 expandBufAdd8BE(pReply, dvmGetFieldLong(obj, ifield->byteOffset));
1561 ExpandBuf* pReply)
1569 expandBufAdd1(pReply, tag);
1570 expandBufAddObjectId(pReply, objectToObjectId(objVal));
1576 expandBufAdd1(pReply, tag);
1580 expandBufAdd1(pReply, dvmGetStaticFieldBoolean(sfield));
1583 expandBufAdd1(pReply, dvmGetStaticFieldByte(sfield));
1586 expandBufAdd2BE(pReply, dvmGetStaticFieldShort(sfield));
1589 expandBufAdd2BE(pReply, dvmGetStaticFieldChar(sfield));
1592 expandBufAdd4BE(pReply, dvmGetStaticFieldInt(sfield));
1596 expandBufAdd4BE(pReply, value.i);
1599 expandBufAdd8BE(pReply, dvmGetStaticFieldLong(sfield));
1603 expandBufAdd8BE(pReply, value.j);