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

  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
SingleStepWithLocationTest.java 82 ReplyPacket lineTableReply = getLineTable(refTypeID, methodID);
83 checkReplyPacket(lineTableReply, "Method.LineTable");
84 lineTableReply.getNextValueAsLong(); // startIndex
85 lineTableReply.getNextValueAsLong(); // endIndex
86 int linesCount = lineTableReply.getNextValueAsInt();
90 lastLineCodeIndex = lineTableReply.getNextValueAsLong();
91 lastLineNumber = lineTableReply.getNextValueAsInt();
CombinedEventsTestCase.java 67 ReplyPacket lineTableReply = debuggeeWrapper.vmMirror.performCommand(packet);
68 if ( ! checkReplyPacketWithoutFail(lineTableReply, "printMethodLineTable(): Method.LineTable command") ) {
77 long methodStartCodeIndex = lineTableReply.getNextValueAsLong();
79 long methodEndCodeIndex = lineTableReply.getNextValueAsLong();
82 int linesNumber = lineTableReply.getNextValueAsInt();
85 long lineCodeIndex = lineTableReply.getNextValueAsLong();
86 int lineNumber = lineTableReply.getNextValueAsInt();
106 ReplyPacket lineTableReply = debuggeeWrapper.vmMirror.performCommand(packet);
108 (lineTableReply, "getMethodStartCodeIndex(): Method.LineTable command") ) {
111 long methodStartCodeIndex = lineTableReply.getNextValueAsLong()
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
JDWPTestCase.java 223 ReplyPacket lineTableReply = debuggeeWrapper.vmMirror
225 checkReplyPacket(lineTableReply, "Method::LineTable command");
226 return lineTableReply;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
VmMirror.java 225 ReplyPacket lineTableReply = getLineTable(classID, methodID);
226 if (lineTableReply.getErrorCode() != JDWPConstants.Error.NONE) {
229 + lineTableReply.getErrorCode()
231 + JDWPConstants.Error.getName(lineTableReply
235 lineTableReply.getNextValueAsLong();
238 lineTableReply.getNextValueAsLong();
242 lineTableReply.getNextValueAsInt();
244 long lineCodeIndex = lineTableReply.getNextValueAsLong();
    [all...]

Completed in 427 milliseconds