HomeSort by relevance Sort by last modified time
    Searched refs:ReplyPacket (Results 1 - 25 of 180) sorted by null

1 2 3 4 5 6 7 8

  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
ReplyPacket.java 33 public class ReplyPacket extends Packet {
40 * A default constructor that creates an empty ReplyPacket with empty header
43 public ReplyPacket() {
48 * A constructor that creates ReplyPacket from array of bytes including
54 public ReplyPacket(byte p[]) {
61 * Sets the error code value of the header of the ReplyPacket as short.
71 * Gets the error code value of the header of the ReplyPacket.
73 * @return the error code value of the header of the ReplyPacket.
80 * Gets the representation of the ReplyPacket as array of bytes in the JDWP
83 * @return the representation of the ReplyPacket as array of bytes in th
    [all...]
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...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
SuperClassTest.java 33 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
43 private ReplyPacket jdwpGetSuperClassReply(long classID, int errorExpected) {
48 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
53 private void asserSuperClassReplyIsValid(ReplyPacket reply, String expectedSignature) {
89 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE);
99 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE);
109 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE);
118 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE);
128 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE);
153 ReplyPacket reply = jdwpGetSuperClassReply(interfaceID, JDWPConstants.Error.NONE)
    [all...]
InvokeMethodAfterMultipleThreadSuspensionTest.java 23 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
59 protected void checkInvokeReply(ReplyPacket reply) {
InvokeMethodWithSuspensionTest.java 23 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
57 protected void checkInvokeReply(ReplyPacket reply) {
NewInstanceAfterMultipleThreadSuspensionTest.java 24 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
58 protected void checkInvokeReply(ReplyPacket reply) {
NewInstanceWithSuspensionTest.java 24 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
56 protected void checkInvokeReply(ReplyPacket reply) {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ReferenceType/
ClassLoaderTest.java 31 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
90 ReplyPacket stringInstanceReply =
101 ReplyPacket classLoaderReply = debuggeeWrapper.vmMirror.performCommand(classLoaderCommand);
126 ReplyPacket classLoaderReply = debuggeeWrapper.vmMirror.performCommand(classLoaderCommand);
162 ReplyPacket refTypeReply = debuggeeWrapper.vmMirror.performCommand(refTypeCommand);
178 ReplyPacket superclassReply =
SignatureTest.java 30 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
73 ReplyPacket signatureReply = debuggeeWrapper.vmMirror.performCommand(signatureCommand);
  /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/VirtualMachine/
SuspendTest.java 31 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
60 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
68 ReplyPacket replyName;
Resume002Test.java 25 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
81 ReplyPacket breakpointReply = debuggeeWrapper.vmMirror.setBreakpoint(location,
106 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
125 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
CreateStringTest.java 30 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
62 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
JDWPStackFrameTestCase.java 31 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
96 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
111 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
131 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
155 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
174 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
187 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
197 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
208 ReplyPacket reply = debuggeeWrapper.vmMirror
ProxyThisObjectTest.java 23 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
46 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
  /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/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/DebuggerOnDemand/
OnthrowLaunchDebugger001.java 30 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
50 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
MethodEntryTest.java 31 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
59 ReplyPacket reply = debuggeeWrapper.vmMirror.setMethodEntry(methodEntryClassNameRegexp);
MethodExitTest.java 31 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
59 ReplyPacket reply = debuggeeWrapper.vmMirror.setMethodExit(methodExitClassNameRegexp);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Method/
BytecodesTest.java 33 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
66 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
IsObsoleteTest.java 30 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
63 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
LineTableTest.java 30 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
58 ReplyPacket reply = getLineTable(classID, methodsInfo[i].getMethodID());
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
NameTest.java 30 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
54 ReplyPacket thrdReply, reply = debuggeeWrapper.vmMirror.getAllThreadID();

Completed in 3648 milliseconds

1 2 3 4 5 6 7 8