/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/ |
D | EventWithExceptionTest.java | 91 clearEvent(JDWPConstants.EventKind.EXCEPTION, exceptionRequestId, true); in testBreakpoint_BeforeException() 114 clearEvent(JDWPConstants.EventKind.BREAKPOINT, breakpointRequestId, true); in testBreakpoint_BeforeException() 174 clearEvent(JDWPConstants.EventKind.BREAKPOINT, breakpointRequestId, true); in testBreakpoint_UponException() 268 clearEvent(JDWPConstants.EventKind.SINGLE_STEP, singleStepRequestId, true); in runSingleStepTest() 326 clearEvent(fieldEventKind, fieldWatchpointRequestId, true); in runFieldWatchpointTest() 383 clearEvent(methodExitEventKind, methodExitRequestId, true); in runMethodExitTest()
|
D | EventLocationEventTestCase.java | 132 clearEvent(eventKind, requestId.intValue()); in clearAllEvents() 137 private void clearEvent(byte fieldEventKind, int requestId) { in clearEvent() method in EventLocationEventTestCase 139 debuggeeWrapper.vmMirror.clearEvent(fieldEventKind, requestId); in clearEvent()
|
D | CombinedEventsTest.java | 165 ReplyPacket clearReply = debuggeeWrapper.vmMirror.clearEvent( in testCombinedEvents_01() 171 clearReply = debuggeeWrapper.vmMirror.clearEvent( in testCombinedEvents_01() 301 ReplyPacket clearReply = debuggeeWrapper.vmMirror.clearEvent( in testCombinedEvents_02() 308 ReplyPacket clearReply = debuggeeWrapper.vmMirror.clearEvent( in testCombinedEvents_02() 420 ReplyPacket clearReply = debuggeeWrapper.vmMirror.clearEvent( in testCombinedEvents_03() 426 clearReply = debuggeeWrapper.vmMirror.clearEvent( in testCombinedEvents_03() 549 ReplyPacket clearReply = debuggeeWrapper.vmMirror.clearEvent( in testCombinedEvents_04() 556 ReplyPacket clearReply = debuggeeWrapper.vmMirror.clearEvent( in testCombinedEvents_04() 729 ReplyPacket clearReply = debuggeeWrapper.vmMirror.clearEvent( in testCombinedEvents_05() 892 ReplyPacket clearReply = debuggeeWrapper.vmMirror.clearEvent( in testCombinedEvents_06()
|
D | SingleStepWithPendingExceptionTest.java | 80 clearEvent(JDWPConstants.EventKind.EXCEPTION, exceptionRequestId, true); in testSingleStepWithPendingException() 115 clearEvent(JDWPConstants.EventKind.SINGLE_STEP, singleStepRequestId, true); in testSingleStepWithPendingException()
|
D | BreakpointOnCatchTest.java | 73 debuggeeWrapper.vmMirror.clearEvent(JDWPConstants.EventKind.EXCEPTION, exceptionRequestID); in testBreakpointOnCatch()
|
D | CombinedEvents003Test.java | 164 ReplyPacket clearReply = debuggeeWrapper.vmMirror.clearEvent( in testCombinedEvents003_01() 170 clearReply = debuggeeWrapper.vmMirror.clearEvent( in testCombinedEvents003_01()
|
D | ClassUnloadTest.java | 99 … reply = debuggeeWrapper.vmMirror.clearEvent(JDWPConstants.EventKind.CLASS_UNLOAD, requestID); in testClassUnloadEvent()
|
D | ExceptionBaseTest.java | 62 debuggeeWrapper.vmMirror.clearEvent(JDWPConstants.EventKind.EXCEPTION, requestID); in receiveAndCheckExceptionEvent()
|
D | ClassPrepare002Test.java | 127 debuggeeWrapper.vmMirror.clearEvent(JDWPConstants.EventKind.CLASS_PREPARE, in testClassPrepareCausedByDebugger()
|
D | FieldModification002Test.java | 135 clearEvent(JDWPConstants.EventKind.FIELD_MODIFICATION, requestID, false); in hookFieldModification()
|
D | SingleStepTest.java | 187 debuggeeWrapper.vmMirror.clearEvent(JDWPConstants.EventKind.SINGLE_STEP, requestID); in stepFunction()
|
D | SingleStepWithLocationTest.java | 155 … debuggeeWrapper.vmMirror.clearEvent(JDWPConstants.EventKind.SINGLE_STEP, (int) requestID); in testSingleStepToLocation()
|
D | SingleStepThroughReflectionTest.java | 179 debuggeeWrapper.vmMirror.clearEvent(JDWPConstants.EventKind.SINGLE_STEP, in clearSingleStep()
|
D | CombinedEvents002Test.java | 312 debuggeeWrapper.vmMirror.clearEvent(eventKind.byteValue(), requestId.intValue()); in clearEvents()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/ |
D | InvokeMethodTest.java | 107 protected void clearEvent(int requestID) { in clearEvent() method in InvokeMethodTest 195 clearEvent(requestID); in testInvokeMethod001() 310 clearEvent(requestID); in testInvokeMethod002()
|
D | InvokeMethodDefaultTest.java | 96 debuggeeWrapper.vmMirror.clearEvent(JDWPConstants.EventKind.METHOD_ENTRY, requestID); in testInvokeMethod()
|
D | InvokeMethodDefault002Test.java | 96 debuggeeWrapper.vmMirror.clearEvent(JDWPConstants.EventKind.METHOD_ENTRY, requestID); in testInvokeMethod()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Deoptimization/ |
D | DeoptimizationWithExceptionHandlingTest.java | 145 debuggeeWrapper.vmMirror.clearEvent(eventKind, requestID); in waitForExceptionEvent()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/InterfaceType/ |
D | InvokeMethodTest.java | 92 debuggeeWrapper.vmMirror.clearEvent(JDWPConstants.EventKind.METHOD_ENTRY, requestID); in testInvokeMethodStatic()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/ |
D | JDWPEventModifierTestCase.java | 240 clearEvent(eventKind, requestID, true); in clearAndResume()
|
/external/r8/src/test/java/com/android/tools/r8/debug/ |
D | DebugTestBase.java | 1117 testBase.getMirror().clearEvent(EventKind.SINGLE_STEP, stepRequestID); 1166 testBase.getMirror().clearEvent(JDWPConstants.EventKind.CLASS_PREPARE,
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/ |
D | JDWPTestCase.java | 953 protected void clearEvent(byte eventKind, int requestID, boolean verbose) { in clearEvent() method in JDWPTestCase
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
D | VmMirror.java | 1570 public ReplyPacket clearEvent(byte eventKind, int requestID) { in clearEvent() method in VmMirror
|