Home
last modified time | relevance | path

Searched refs:SuspendPolicy (Results 1 – 25 of 43) sorted by relevance

12

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/MultiSession/
DVMDeathTest.java65 byte suspendPolicy = JDWPConstants.SuspendPolicy.ALL; in testVMDeathRequest()
69 + JDWPConstants.SuspendPolicy.getName(suspendPolicy)); in testVMDeathRequest()
75 setRequestCommand.setNextValueAsByte(JDWPConstants.SuspendPolicy.ALL); in testVMDeathRequest()
117 + JDWPConstants.SuspendPolicy.getName(eventSuspendPolicy)); in testVMDeathRequest()
DSingleStepTest.java96 setRequestCommand.setNextValueAsByte(JDWPConstants.SuspendPolicy.ALL); in stepFunction()
143 + JDWPConstants.SuspendPolicy.getName(eventSuspendPolicy)); in stepFunction()
DFieldAccessTest.java92 + JDWPConstants.SuspendPolicy.getName(eventSuspendPolicy)); in testFieldAccess001()
DFieldModificationTest.java93 + JDWPConstants.SuspendPolicy.getName(eventSuspendPolicy)); in testFieldModification001()
DThreadEndTest.java55 debuggeeWrapper.vmMirror.setThreadEnd(JDWPConstants.SuspendPolicy.NONE); in testThreadEnd001()
DThreadStartTest.java55 debuggeeWrapper.vmMirror.setThreadStart(JDWPConstants.SuspendPolicy.NONE); in testThreadStart001()
DClassPrepareTest.java98 + JDWPConstants.SuspendPolicy.getName(eventSuspendPolicy)); in testClassPrepare001()
DExceptionTest.java99 + JDWPConstants.SuspendPolicy.getName(eventSuspendPolicy)); in testException001()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
DVmMirror.java108 return setBreakpoint(location, JDWPConstants.SuspendPolicy.ALL); in setBreakpoint()
163 return setBreakpointAtMethodBegin(classID, methodName, JDWPConstants.SuspendPolicy.ALL); in setBreakpointAtMethodBegin()
918 JDWPConstants.SuspendPolicy.ALL, classRegexp); in setClassPrepared()
930 JDWPConstants.SuspendPolicy.ALL, referenceTypeID); in setClassPrepared()
944 byte suspendPolicy = JDWPConstants.SuspendPolicy.ALL; in setClassPreparedForSourceNameMatch()
960 JDWPConstants.SuspendPolicy.ALL, classRegexp); in setClassUnload()
972 JDWPConstants.SuspendPolicy.ALL, referenceTypeID); in setClassUnload()
1001 JDWPConstants.SuspendPolicy.ALL, referenceTypeID); in setClassLoad()
1013 JDWPConstants.SuspendPolicy.ALL, referenceTypeID); in setMonitorContendedEnterForClassOnly()
1025 JDWPConstants.SuspendPolicy.ALL, classRegexp); in setMonitorContendedEnterForClassMatch()
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
DVMDeath002Test.java76 byte suspendPolicy = JDWPConstants.SuspendPolicy.ALL; in testVMDeathRequest()
79 + JDWPConstants.SuspendPolicy.getName(suspendPolicy)); in testVMDeathRequest()
85 setRequestCommand.setNextValueAsByte(JDWPConstants.SuspendPolicy.ALL); in testVMDeathRequest()
119 + JDWPConstants.SuspendPolicy.getName(eventSuspendPolicy)); in testVMDeathRequest()
DClassPrepare002Test.java62 final byte suspendPolicy = JDWPConstants.SuspendPolicy.EVENT_THREAD; in testClassPrepareCausedByDebugger()
105 assertEquals(JDWPConstants.SuspendPolicy.ALL, parsedEvent.getSuspendPolicy()); in testClassPrepareCausedByDebugger()
DThreadEndTest.java52 debuggeeWrapper.vmMirror.setThreadEnd(JDWPConstants.SuspendPolicy.NONE); in testThreadEndEvent001()
DThreadStartTest.java54 debuggeeWrapper.vmMirror.setThreadStart(JDWPConstants.SuspendPolicy.NONE); in testThreadStartEvent001()
DEventLocationEventTestCase.java111 EventBuilder builder = Event.builder(eventKind, JDWPConstants.SuspendPolicy.ALL); in requestEventForAllLocations()
DCombinedEventsTest.java132 setRequestCommand.setNextValueAsByte(JDWPConstants.SuspendPolicy.ALL); in testCombinedEvents_01()
267 setRequestCommand.setNextValueAsByte(JDWPConstants.SuspendPolicy.ALL); in testCombinedEvents_02()
381 setRequestCommand.setNextValueAsByte(JDWPConstants.SuspendPolicy.ALL); in testCombinedEvents_03()
508 setRequestCommand.setNextValueAsByte(JDWPConstants.SuspendPolicy.ALL); in testCombinedEvents_04()
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DEventSetImpl.java580 suspendPolicy = JDWP.SuspendPolicy.NONE; in EventSetImpl()
612 case JDWP.SuspendPolicy.ALL: in build()
616 case JDWP.SuspendPolicy.EVENT_THREAD: in build()
620 case JDWP.SuspendPolicy.NONE: in build()
644 suspendPolicy == JDWP.SuspendPolicy.EVENT_THREAD) { in build()
667 if (suspendPolicy == JDWP.SuspendPolicy.ALL) { in build()
669 } else if (suspendPolicy == JDWP.SuspendPolicy.EVENT_THREAD) { in build()
677 suspendPolicy = JDWP.SuspendPolicy.NONE; in build()
DEventRequestManagerImpl.java51 case JDWP.SuspendPolicy.ALL: in JDWPtoJDISuspendPolicy()
53 case JDWP.SuspendPolicy.EVENT_THREAD: in JDWPtoJDISuspendPolicy()
55 case JDWP.SuspendPolicy.NONE: in JDWPtoJDISuspendPolicy()
65 return JDWP.SuspendPolicy.ALL; in JDItoJDWPSuspendPolicy()
67 return JDWP.SuspendPolicy.EVENT_THREAD; in JDItoJDWPSuspendPolicy()
69 return JDWP.SuspendPolicy.NONE; in JDItoJDWPSuspendPolicy()
98 byte suspendPolicy = JDWP.SuspendPolicy.ALL;
DEventQueueImpl.java113 if ((eventSet != null) && (eventSet.suspendPolicy() == JDWP.SuspendPolicy.ALL)) { in remove()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
DJDWPInvokeMethodWithSuspensionTestCase.java68 JDWPConstants.SuspendPolicy.EVENT_THREAD); in runInvokeMethodTest()
74 JDWPConstants.SuspendPolicy.ALL); in runInvokeMethodTest()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
DReleaseEventsTest.java72 debuggeeWrapper.vmMirror.setThreadStart(JDWPConstants.SuspendPolicy.ALL); in testReleaseEvents001()
DHoldEventsTest.java62 debuggeeWrapper.vmMirror.setThreadStart(JDWPConstants.SuspendPolicy.ALL); in testHoldEvents001()
DDisposeDuringInvokeTest.java64 JDWPConstants.SuspendPolicy.EVENT_THREAD); in testDisposeDuringInvoke()
DResume002Test.java82 JDWPConstants.SuspendPolicy.EVENT_THREAD); in installBreakpoint()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
DInvokeMethodTest.java100 packet.setNextValueAsByte(JDWPConstants.SuspendPolicy.ALL); in testInvokeMethod001()
251 packet.setNextValueAsByte(JDWPConstants.SuspendPolicy.ALL); in testInvokeMethod002()
389 packet.setNextValueAsByte(JDWPConstants.SuspendPolicy.ALL); in testInvokeMethod003()
DNewInstanceTest.java96 packet.setNextValueAsByte(JDWPConstants.SuspendPolicy.ALL); in testNewInstance001()
287 packet.setNextValueAsByte(JDWPConstants.SuspendPolicy.ALL); in testNewInstance002()

12