Home | History | Annotate | Download | only in StackFrame

Lines Matching defs:reply

96         ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
97 checkReplyPacket(reply, "ThreadReference::FrameCount command");
99 int frameCount = reply.getNextValueAsInt();
111 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
112 checkReplyPacket(reply, "ThreadReference::FramesCommand command");
114 int frames = reply.getNextValueAsInt();
117 long frameID = reply.getNextValueAsLong();
118 Location location = reply.getNextValueAsLocation();
131 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
132 checkReplyPacket(reply, "Method::VariableTable command");
134 reply.getNextValueAsInt();
135 int varNumber = reply.getNextValueAsInt();
139 reply.getNextValueAsLong();
140 String name = reply.getNextValueAsString();
141 String sign = reply.getNextValueAsString();
142 reply.getNextValueAsInt();
144 int slot = reply.getNextValueAsInt();
155 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
156 checkReplyPacket(reply, "VirtualMachine::AllThreads command");
158 int frames = reply.getNextValueAsInt();
162 frameIDs[i] = reply.getNextValueAsLong();
174 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
175 checkReplyPacket(reply, "ThreadReference::Name command");
177 String name= reply.getNextValueAsString();
187 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
188 checkReplyPacket(reply, "ThreadReference::Suspend command");
197 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
198 checkReplyPacket(reply, "ThreadReference::Resume command");
208 ReplyPacket reply = debuggeeWrapper.vmMirror
210 checkReplyPacket(reply, "StackFrame::PopFramesCommand command");