Home
last modified time | relevance | path

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

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
DSingleStepTest.java129 .setNextValueAsByte(JDWPConstants.EventKind.SINGLE_STEP); in stepFunction()
170 assertEquals("Invalid event kind,", JDWPConstants.EventKind.SINGLE_STEP, in stepFunction()
172 JDWPConstants.EventKind.getName(JDWPConstants.EventKind.SINGLE_STEP), in stepFunction()
182 debuggeeWrapper.vmMirror.clearEvent(JDWPConstants.EventKind.SINGLE_STEP, requestID); in stepFunction()
DSingleStepWithLocationTest.java104 JDWPConstants.EventKind.SINGLE_STEP); in testSingleStepToLocation()
145 assertEquals("Invalid event kind,", JDWPConstants.EventKind.SINGLE_STEP, in testSingleStepToLocation()
147 JDWPConstants.EventKind.getName(JDWPConstants.EventKind.SINGLE_STEP), in testSingleStepToLocation()
153 … debuggeeWrapper.vmMirror.clearEvent(JDWPConstants.EventKind.SINGLE_STEP, (int) requestID); in testSingleStepToLocation()
DSingleStepThroughReflectionTest.java89 .setNextValueAsByte(JDWPConstants.EventKind.SINGLE_STEP); in testSingleStepIntoThroughReflection()
164 assertEquals("Invalid event kind,", JDWPConstants.EventKind.SINGLE_STEP, in waitForSingleStepEvent()
166 JDWPConstants.EventKind.getName(JDWPConstants.EventKind.SINGLE_STEP), in waitForSingleStepEvent()
175 debuggeeWrapper.vmMirror.clearEvent(JDWPConstants.EventKind.SINGLE_STEP, in clearSingleStep()
DSingleStepWithPendingExceptionTest.java100 debuggeeWrapper.vmMirror.receiveCertainEvent(JDWPConstants.EventKind.SINGLE_STEP); in testSingleStepWithPendingException()
104 JDWPConstants.EventKind.SINGLE_STEP); in testSingleStepWithPendingException()
115 clearEvent(JDWPConstants.EventKind.SINGLE_STEP, singleStepRequestId, true); in testSingleStepWithPendingException()
DCombinedEventsTest.java75 JDWPConstants.EventKind.SINGLE_STEP, in testCombinedEvents_01()
131 .setNextValueAsByte(JDWPConstants.EventKind.SINGLE_STEP); in testCombinedEvents_01()
170 JDWPConstants.EventKind.SINGLE_STEP, stepRequestID); in testCombinedEvents_01()
201 JDWPConstants.EventKind.SINGLE_STEP, in testCombinedEvents_02()
266 .setNextValueAsByte(JDWPConstants.EventKind.SINGLE_STEP); in testCombinedEvents_02()
307 JDWPConstants.EventKind.SINGLE_STEP, stepRequestID); in testCombinedEvents_02()
338 JDWPConstants.EventKind.SINGLE_STEP, in testCombinedEvents_03()
380 .setNextValueAsByte(JDWPConstants.EventKind.SINGLE_STEP); in testCombinedEvents_03()
425 JDWPConstants.EventKind.SINGLE_STEP, stepRequestID); in testCombinedEvents_03()
456 JDWPConstants.EventKind.SINGLE_STEP, in testCombinedEvents_04()
[all …]
DCombinedEvents003Test.java67 JDWPConstants.EventKind.SINGLE_STEP, in testCombinedEvents003_01()
132 .setNextValueAsByte(JDWPConstants.EventKind.SINGLE_STEP); in testCombinedEvents003_01()
169 JDWPConstants.EventKind.SINGLE_STEP, stepRequestID); in testCombinedEvents003_01()
291 case JDWPConstants.EventKind.SINGLE_STEP: in receiveAndCheckEvents()
DEventWithExceptionTest.java260 ParsedEvent singleStepEvent = waitForEvent(JDWPConstants.EventKind.SINGLE_STEP, in runSingleStepTest()
268 clearEvent(JDWPConstants.EventKind.SINGLE_STEP, singleStepRequestId, true); in runSingleStepTest()
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.java1485 byte eventKind = JDWPConstants.EventKind.SINGLE_STEP; in setStep()
1507 byte eventKind = JDWPConstants.EventKind.SINGLE_STEP; in setStep()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/MultiSession/
DSingleStepTest.java95 .setNextValueAsByte(JDWPConstants.EventKind.SINGLE_STEP); in stepFunction()
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DEventRequestManagerImpl.java614 return JDWP.EventKind.SINGLE_STEP; in eventCmd()
871 return (List<StepRequest>)unmodifiableRequestList(JDWP.EventKind.SINGLE_STEP); in stepRequests()
DEventSetImpl.java736 case JDWP.EventKind.SINGLE_STEP: in createEvent()
/external/oj-libjdwp/make/data/jdwp/
Djdwp.spec2758 (Alt SingleStep=JDWP.EventKind.SINGLE_STEP
3146 (Constant SINGLE_STEP =1 )
/external/oj-libjdwp/src/share/back/
Dutil.c2019 index2jdwp[EI_SINGLE_STEP -EI_min] = JDWP_EVENT(SINGLE_STEP); in eventIndexInit()
2063 case JDWP_EVENT(SINGLE_STEP): in jdwp2EventIndex()