HomeSort by relevance Sort by last modified time
    Searched full:replypacket (Results 1 - 25 of 154) sorted by null

1 2 3 4 5 6 7

  /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...]
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...]
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...]
  /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
  /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...]
SetValues002Test.java 31 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
66 ReplyPacket classesBySignatureReply =
99 ReplyPacket getValuesReply =
139 ReplyPacket checkedReply =
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ReferenceType/
ClassObjectTest.java 30 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
80 ReplyPacket checkedReply = debuggeeWrapper.vmMirror.performCommand(checkedCommand);
93 ReplyPacket referenceTypeReply = debuggeeWrapper.vmMirror.performCommand(referenceTypeCommand);
112 ReplyPacket signatureReply = debuggeeWrapper.vmMirror.performCommand(signatureCommand);
131 ReplyPacket classLoaderReply = debuggeeWrapper.vmMirror.performCommand(classLoaderCommand);
  /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;
171 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(command);
193 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(command);
217 protected ReplyPacket getLineTable(long classID, long methodID) {
223 ReplyPacket lineTableReply = debuggeeWrapper.vmMirror
241 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
267 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(command);
286 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
315 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
340 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet)
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
FrameCountTest.java 31 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
73 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
100 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
NameTest.java 30 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
54 ReplyPacket thrdReply, reply = debuggeeWrapper.vmMirror.getAllThreadID();
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
ClassesBySignatureTest.java 31 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
65 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
72 ReplyPacket replySignature;
SuspendTest.java 31 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
60 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
68 ReplyPacket replyName;
AllThreadsTest.java 31 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
64 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
70 ReplyPacket replyName;
122 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
129 ReplyPacket replyName;
195 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);
IDSizesTest.java 30 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
55 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
  /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/
BreakpointTest.java 32 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
56 ReplyPacket reply;
MethodEntryTest.java 31 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
58 ReplyPacket reply = debuggeeWrapper.vmMirror.setMethodEntry(methodEntryClassNameRegexp);
MethodExitTest.java 31 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
58 ReplyPacket reply = debuggeeWrapper.vmMirror.setMethodExit(methodExitClassNameRegexp);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Method/
IsObsoleteTest.java 32 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
74 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
JDWPMethodTestCase.java 31 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
92 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/ThreadGroupReference/
NameTest.java 30 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
68 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayReference/
SetValues002Test.java 32 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
70 ReplyPacket classesBySignatureReply =
100 ReplyPacket getValuesReply =
132 ReplyPacket checkedReply = debuggeeWrapper.vmMirror.performCommand(checkedCommand);
SetValuesTest.java 32 import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
61 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
107 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
132 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);

Completed in 245 milliseconds

1 2 3 4 5 6 7