Home
last modified time | relevance | path

Searched refs:SINGLE_STEP (Results 1 – 10 of 10) sorted by relevance

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
DSingleStepTest.java133 .setNextValueAsByte(JDWPConstants.EventKind.SINGLE_STEP); in stepFunction()
174 assertEquals("Invalid event kind,", JDWPConstants.EventKind.SINGLE_STEP, in stepFunction()
176 JDWPConstants.EventKind.getName(JDWPConstants.EventKind.SINGLE_STEP), in stepFunction()
186 debuggeeWrapper.vmMirror.clearEvent(JDWPConstants.EventKind.SINGLE_STEP, requestID); in stepFunction()
DSingleStepWithLocationTest.java105 JDWPConstants.EventKind.SINGLE_STEP); in testSingleStepToLocation()
146 assertEquals("Invalid event kind,", JDWPConstants.EventKind.SINGLE_STEP, in testSingleStepToLocation()
148 JDWPConstants.EventKind.getName(JDWPConstants.EventKind.SINGLE_STEP), in testSingleStepToLocation()
154 … debuggeeWrapper.vmMirror.clearEvent(JDWPConstants.EventKind.SINGLE_STEP, (int) requestID); in testSingleStepToLocation()
DSingleStepThroughReflectionTest.java92 .setNextValueAsByte(JDWPConstants.EventKind.SINGLE_STEP); in testSingleStepIntoThroughReflection()
167 assertEquals("Invalid event kind,", JDWPConstants.EventKind.SINGLE_STEP, in waitForSingleStepEvent()
169 JDWPConstants.EventKind.getName(JDWPConstants.EventKind.SINGLE_STEP), in waitForSingleStepEvent()
178 debuggeeWrapper.vmMirror.clearEvent(JDWPConstants.EventKind.SINGLE_STEP, in clearSingleStep()
DCombinedEventsTest.java76 JDWPConstants.EventKind.SINGLE_STEP, in testCombinedEvents_01()
132 .setNextValueAsByte(JDWPConstants.EventKind.SINGLE_STEP); in testCombinedEvents_01()
171 JDWPConstants.EventKind.SINGLE_STEP, stepRequestID); in testCombinedEvents_01()
202 JDWPConstants.EventKind.SINGLE_STEP, in testCombinedEvents_02()
267 .setNextValueAsByte(JDWPConstants.EventKind.SINGLE_STEP); in testCombinedEvents_02()
308 JDWPConstants.EventKind.SINGLE_STEP, stepRequestID); in testCombinedEvents_02()
339 JDWPConstants.EventKind.SINGLE_STEP, in testCombinedEvents_03()
381 .setNextValueAsByte(JDWPConstants.EventKind.SINGLE_STEP); in testCombinedEvents_03()
426 JDWPConstants.EventKind.SINGLE_STEP, stepRequestID); in testCombinedEvents_03()
457 JDWPConstants.EventKind.SINGLE_STEP, in testCombinedEvents_04()
[all …]
DCombinedEvents003Test.java68 JDWPConstants.EventKind.SINGLE_STEP, in testCombinedEvents003_01()
133 .setNextValueAsByte(JDWPConstants.EventKind.SINGLE_STEP); in testCombinedEvents003_01()
170 JDWPConstants.EventKind.SINGLE_STEP, stepRequestID); in testCombinedEvents003_01()
292 case JDWPConstants.EventKind.SINGLE_STEP: in receiveAndCheckEvents()
DCombinedEventsTestCase.java207 case JDWPConstants.EventKind.SINGLE_STEP: in checkEventLocation()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
DJDWPConstants.java274 public static final byte SINGLE_STEP = 1; field in JDWPConstants.EventKind
336 case SINGLE_STEP: in getName()
DParsedEvent.java192 super(suspendPolicy, packet, JDWPConstants.EventKind.SINGLE_STEP); in Event_SINGLE_STEP()
660 case JDWPConstants.EventKind.SINGLE_STEP: { in parseEventPacket()
DVmMirror.java1753 byte eventKind = JDWPConstants.EventKind.SINGLE_STEP; in setStep()
1782 byte eventKind = JDWPConstants.EventKind.SINGLE_STEP; in setStep()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/MultiSession/
DSingleStepTest.java99 .setNextValueAsByte(JDWPConstants.EventKind.SINGLE_STEP); in stepFunction()