Home
last modified time | relevance | path

Searched refs:lineTableReply (Results 1 – 4 of 4) sorted by relevance

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
DCombinedEventsTestCase.java67 ReplyPacket lineTableReply = debuggeeWrapper.vmMirror.performCommand(packet); in printMethodLineTable() local
68 …if ( ! checkReplyPacketWithoutFail(lineTableReply, "printMethodLineTable(): Method.LineTable comm… in printMethodLineTable()
77 long methodStartCodeIndex = lineTableReply.getNextValueAsLong(); in printMethodLineTable()
79 long methodEndCodeIndex = lineTableReply.getNextValueAsLong(); in printMethodLineTable()
82 int linesNumber = lineTableReply.getNextValueAsInt(); in printMethodLineTable()
85 long lineCodeIndex = lineTableReply.getNextValueAsLong(); in printMethodLineTable()
86 int lineNumber = lineTableReply.getNextValueAsInt(); in printMethodLineTable()
106 ReplyPacket lineTableReply = debuggeeWrapper.vmMirror.performCommand(packet); in getMethodStartCodeIndex() local
108 (lineTableReply, "getMethodStartCodeIndex(): Method.LineTable command") ) { in getMethodStartCodeIndex()
111 long methodStartCodeIndex = lineTableReply.getNextValueAsLong(); in getMethodStartCodeIndex()
[all …]
DSingleStepWithLocationTest.java83 ReplyPacket lineTableReply = getLineTable(refTypeID, methodID); in testSingleStepToLocation() local
84 checkReplyPacket(lineTableReply, "Method.LineTable"); in testSingleStepToLocation()
85 lineTableReply.getNextValueAsLong(); // startIndex in testSingleStepToLocation()
86 lineTableReply.getNextValueAsLong(); // endIndex in testSingleStepToLocation()
87 int linesCount = lineTableReply.getNextValueAsInt(); in testSingleStepToLocation()
91 lastLineCodeIndex = lineTableReply.getNextValueAsLong(); in testSingleStepToLocation()
92 lastLineNumber = lineTableReply.getNextValueAsInt(); in testSingleStepToLocation()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
DVmMirror.java178 ReplyPacket lineTableReply = getLineTable(classID, methodID); in setBreakpointAtMethodBegin() local
179 if (lineTableReply.getErrorCode() != JDWPConstants.Error.NONE) { in setBreakpointAtMethodBegin()
182 + lineTableReply.getErrorCode() in setBreakpointAtMethodBegin()
184 + JDWPConstants.Error.getName(lineTableReply in setBreakpointAtMethodBegin()
188 lineTableReply.getNextValueAsLong(); in setBreakpointAtMethodBegin()
191 lineTableReply.getNextValueAsLong(); in setBreakpointAtMethodBegin()
195 lineTableReply.getNextValueAsInt(); in setBreakpointAtMethodBegin()
197 long lineCodeIndex = lineTableReply.getNextValueAsLong(); in setBreakpointAtMethodBegin()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
DJDWPTestCase.java273 ReplyPacket lineTableReply = debuggeeWrapper.vmMirror in getLineTable() local
275 checkReplyPacket(lineTableReply, "Method::LineTable command"); in getLineTable()
276 return lineTableReply; in getLineTable()