Lines Matching refs:reply

64         ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
65 checkReplyPacket(reply, "VirtualMachine::ClassesBySignature command");
67 int classes = reply.getNextValueAsInt();
70 byte refTypeTag = reply.getNextValueAsByte();
71 long classID = reply.getNextValueAsReferenceTypeID();
72 int status = reply.getNextValueAsInt();
73 assertAllDataRead(reply);
89 reply = debuggeeWrapper.vmMirror.performCommand(packet);
90 checkReplyPacket(reply, "ReferenceType::Methods command");
92 int declared = reply.getNextValueAsInt();
96 long methodID = reply.getNextValueAsMethodID();
97 String name = reply.getNextValueAsString();
98 String signature = reply.getNextValueAsString();
99 int modBits = reply.getNextValueAsInt();
106 assertAllDataRead(reply);
118 reply = debuggeeWrapper.vmMirror.performCommand(packet);
119 checkReplyPacket(reply, "EventRequest::Set command");
121 int requestID = reply.getNextValueAsInt();
123 assertAllDataRead(reply);
156 reply = debuggeeWrapper.vmMirror.performCommand(packet);
157 checkReplyPacket(reply, "EventRequest::Clear command");
158 assertAllDataRead(reply);
185 reply = debuggeeWrapper.vmMirror.performCommand(packet);
186 checkReplyPacket(reply, "ReferenceType::Fields command");
188 int fieldsCount = reply.getNextValueAsInt();
193 long id = reply.getNextValueAsFieldID();
194 String name = reply.getNextValueAsString();
196 reply.getNextValueAsString();
198 reply.getNextValueAsInt();
207 assertAllDataRead(reply);
226 reply = debuggeeWrapper.vmMirror.performCommand(packet);
227 checkReplyPacket(reply, "ReferenceType::GetValues command");
229 int valuesCount = reply.getNextValueAsInt();
231 fieldValues[i] = reply.getNextValueAsValue();
233 assertAllDataRead(reply);
248 reply = debuggeeWrapper.vmMirror.performCommand(packet);
251 checkReplyPacket(reply, "ClassType::InvokeMethod command",
254 checkReplyPacket(reply, "ClassType::InvokeMethod command");
256 Value returnValue = reply.getNextValueAsValue();
263 TaggedObject exception = reply.getNextValueAsTaggedObject();
276 assertAllDataRead(reply);
282 reply = debuggeeWrapper.vmMirror.performCommand(packet);
283 checkReplyPacket(reply, "VirtualMachine::Resume command");
284 assertAllDataRead(reply);