HomeSort by relevance Sort by last modified time
    Searched refs:replyPacket (Results 1 - 17 of 17) sorted by null

  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
InvokeMethodAfterMultipleThreadSuspensionTest.java 23 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
43 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.getThreadFrames(threadId, 0, 1);
44 int framesCount = replyPacket.getNextValueAsInt();
46 long topFrameId = replyPacket.getNextValueAsFrameID();
47 replyPacket.getNextValueAsLocation(); // consume 'location'
48 assertAllDataRead(replyPacket);
70 protected void checkInvokeReply(ReplyPacket reply) {
InvokeMethodWithSuspensionTest.java 23 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
41 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.getThreadFrames(threadId, 0, 1);
42 int framesCount = replyPacket.getNextValueAsInt();
44 long topFrameId = replyPacket.getNextValueAsFrameID();
45 replyPacket.getNextValueAsLocation(); // consume 'location'
46 assertAllDataRead(replyPacket);
68 protected void checkInvokeReply(ReplyPacket reply) {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Deoptimization/
DeoptimizationWithExceptionHandlingTest.java 24 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
121 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.setMethodEntry(getDebuggeeClassName());
122 replyPacket.getNextValueAsInt(); // unused 'requestID'
123 assertAllDataRead(replyPacket);
128 ReplyPacket replyPacket =
130 int requestID = replyPacket.getNextValueAsInt();
131 assertAllDataRead(replyPacket);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
SingleStepWithPendingExceptionTest.java 25 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
123 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.setException(
126 checkReplyPacket(replyPacket, "Failed to set EXCEPTION event request");
127 return replyPacket.getNextValueAsInt();
131 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.setStep(new String[0], threadId,
133 checkReplyPacket(replyPacket, "Failed to set SINGLE_STEP OUT event request");
134 return replyPacket.getNextValueAsInt();
BreakpointOnCatchTest.java 28 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
101 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.setException(exceptionSig, true, false);
102 return replyPacket.getNextValueAsInt();
108 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.setBreakpoint(location);
109 return replyPacket.getNextValueAsInt();
EventWithExceptionTest.java 26 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
411 ReplyPacket exceptionReplyPacket =
421 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.setStep(eventThreadId,
423 checkReplyPacket(replyPacket, "Failed to set SINGLE_STEP " +
425 return readRequestId(replyPacket);
430 ReplyPacket breakpointReplyPacket =
441 ReplyPacket replyPacket = null;
443 replyPacket = debuggeeWrapper.vmMirror.setFieldAccess(classSignature, classTypeTag
    [all...]
CombinedExceptionEventsTest.java 24 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
177 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.setException(
179 int requestID = replyPacket.getNextValueAsInt();
180 assertAllDataRead(replyPacket);
EventLocationEventTestCase.java 27 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
98 ReplyPacket replyPacket = getLineTable(typeId, methodId);
99 long startIndex = replyPacket.getNextValueAsLong();
100 long endIndex = replyPacket.getNextValueAsLong();
124 ReplyPacket reply = debuggeeWrapper.vmMirror.setEvent(event);
ExceptionUncaughtTest.java 24 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
190 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.setException(EXCEPTION_SIGNATURE,
192 int requestID = replyPacket.getNextValueAsInt();
193 assertAllDataRead(replyPacket);
ExceptionCaughtTest.java 32 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
278 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.setException(exceptionSignature,
280 int requestID = replyPacket.getNextValueAsInt();
281 assertAllDataRead(replyPacket);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
GetValuesTest.java 31 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
70 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.performCommand(packet);
71 checkReplyPacket(replyPacket, "StackFrame.GetValues",
90 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.performCommand(packet);
91 checkReplyPacket(replyPacket, "StackFrame.GetValues",
115 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.performCommand(packet);
116 checkReplyPacket(replyPacket, "StackFrame.GetValues"
    [all...]
SetValuesTest.java 31 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
71 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.performCommand(packet);
72 checkReplyPacket(replyPacket, "StackFrame.SetValues",
91 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.performCommand(packet);
92 checkReplyPacket(replyPacket, "StackFrame.SetValues",
116 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.performCommand(packet);
117 checkReplyPacket(replyPacket, "StackFrame.SetValues"
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
PacketDispatcher.java 197 private Hashtable<Integer, ReplyPacket> replies;
204 replies = new Hashtable<Integer, ReplyPacket>();
222 * @param replyPacket
223 * instance of ReplyPacket
227 public void notifyThread(ReplyPacket replyPacket) throws IOException,
233 Integer Id = new Integer(replyPacket.getId());
248 replies.put(new Integer(replyPacket.getId()),
249 replyPacket);
268 public ReplyPacket waitForReply(CommandPacket command, long timeout
    [all...]
VmMirror.java 40 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
92 * @return ReplyPacket unchanged reply packet
94 public ReplyPacket checkReply(ReplyPacket reply) {
105 * @return ReplyPacket for corresponding command
107 public ReplyPacket setBreakpoint(byte typeTag, Breakpoint breakpoint) {
120 * @return ReplyPacket for corresponding command
122 public ReplyPacket setBreakpoint(byte typeTag, Breakpoint breakpoint,
143 * @return ReplyPacket for corresponding command
145 public ReplyPacket setBreakpoint(Location location)
    [all...]
  /frameworks/base/tests/BandwidthTests/src/com/android/tests/bandwidthenforcement/
BandwidthEnforcementTestService.java 165 final DatagramPacket replyPacket = new DatagramPacket(reply, reply.length);
166 socket.receive(replyPacket);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
JDWPTestCase.java 34 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
188 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(command);
210 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(command);
241 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(command);
265 protected ReplyPacket getLineTable(long classID, long methodID) {
271 ReplyPacket lineTableReply = debuggeeWrapper.vmMirror
289 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
315 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(command);
334 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
363 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdimodel.jar 

Completed in 529 milliseconds