Searched defs:suspendPolicy (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jdi/event/
H A DEventSet.java46 * with the {@link #suspendPolicy() suspend policy}.
147 * @return the suspendPolicy which is either
152 int suspendPolicy(); method in interface:EventSet
160 * Resumes threads suspended by this event set. If the {@link #suspendPolicy}
/openjdk7/jdk/src/share/back/
H A DeventHandler.h37 jbyte suspendPolicy; member in struct:HandlerNode_
50 jbyte suspendPolicy);
H A DEventRequestImpl.c237 jbyte suspendPolicy; local
246 suspendPolicy = inStream_readByte(in);
270 node = eventHandler_alloc(filterCount, ei, suspendPolicy);
H A DdebugInit.c688 jbyte suspendPolicy; local
759 suspendPolicy = suspendOnInit ? JDWP_SUSPEND_POLICY(ALL)
763 eventHelper_reportVMInit(env, currentSessionID, thread, suspendPolicy);
778 eventHelper_recordEvent(&info, 0, suspendPolicy, initEventBag);
H A DeventHandler.c392 jbyte suspendPolicy; local
436 suspendPolicy = eventHelper_reportEvents(sessionID, completedBag);
437 if (thread != NULL && suspendPolicy != JDWP_SUSPEND_POLICY(NONE)) {
1589 eventHandler_alloc(jint filterCount, EventIndex ei, jbyte suspendPolicy) argument
1595 node->suspendPolicy = suspendPolicy;
H A DeventHelper.c48 jbyte suspendPolicy; /* NOTE: Must be the first field */ member in struct:EventCommandSingle
59 jbyte suspendPolicy; /* NOTE: Must be the first field */ member in struct:FrameEventCommandSingle
85 jbyte suspendPolicy; /* NOTE: Must be the first field */ member in struct:ReportVMInitCommand
94 jbyte suspendPolicy; /* NOTE: Must be the first field */ member in struct:ReportEventCompositeCommand
505 if (recc->suspendPolicy != JDWP_SUSPEND_POLICY(NONE)) {
527 suspendWithInvokeEnabled(recc->suspendPolicy, thread);
534 (void)outStream_writeByte(&out, recc->suspendPolicy);
571 if (command->suspendPolicy == JDWP_SUSPEND_POLICY(ALL)) {
573 } else if (command->suspendPolicy == JDWP_SUSPEND_POLICY(EVENT_THREAD)) {
580 (void)outStream_writeByte(&out, command->suspendPolicy);
955 jbyte suspendPolicy = JDWP_SUSPEND_POLICY(NONE); local
996 eventHelper_recordEvent(EventInfo *evinfo, jint id, jbyte suspendPolicy, struct bag *eventBag) argument
1030 eventHelper_recordFrameEvent(jint id, jbyte suspendPolicy, EventIndex ei, jthread thread, jclass clazz, jmethodID method, jlocation location, int needReturnValue, jvalue returnValue, struct bag *eventBag) argument
1096 eventHelper_reportVMInit(JNIEnv *env, jbyte sessionID, jthread thread, jbyte suspendPolicy) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jdi/request/
H A DEventRequest.java182 int suspendPolicy(); method in interface:EventRequest
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DEventRequestSpec.java48 int suspendPolicy = EventRequest.SUSPEND_ALL; field in class:EventRequestSpec
H A DCommands.java1133 byte suspendPolicy = EventRequest.SUSPEND_ALL;
1138 suspendPolicy = EventRequest.SUSPEND_NONE;
1141 suspendPolicy = EventRequest.SUSPEND_EVENT_THREAD;
1159 spec.suspendPolicy = suspendPolicy;
1184 int suspendPolicy = EventRequest.SUSPEND_ALL;
1188 suspendPolicy = EventRequest.SUSPEND_NONE;
1191 suspendPolicy = EventRequest.SUSPEND_EVENT_THREAD;
1217 spec.suspendPolicy = suspendPolicy;
1260 turnOnExitTrace(ThreadInfo threadInfo, int suspendPolicy) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/event/
H A DAbstractEventSet.java113 * @return the integer suspendPolicy
116 return jdiEventSet.suspendPolicy();
125 public int suspendPolicy() { method in class:AbstractEventSet
126 return jdiEventSet.suspendPolicy();
130 return jdiEventSet.suspendPolicy() == EventRequest.SUSPEND_ALL;
134 return jdiEventSet.suspendPolicy() == EventRequest.SUSPEND_EVENT_THREAD;
138 return jdiEventSet.suspendPolicy() == EventRequest.SUSPEND_NONE;
/openjdk7/jdk/test/com/sun/jdi/
H A DExceptionEvents.java112 final int suspendPolicy; field in class:ExceptionEvents
120 int suspendPolicy) {
126 this.suspendPolicy = suspendPolicy;
308 int suspendPolicy) throws Exception {
314 switch (suspendPolicy) {
326 suspendPolicy);
335 suspendPolicy);
422 request.setSuspendPolicy(suspendPolicy);
117 ExceptionEvents(String target, String exceptionName, boolean caught, boolean uncaught, int suspendPolicy) argument
304 go(String target, boolean expectedEvent, String exceptionName, boolean caught, boolean uncaught, int suspendPolicy) argument
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DEventSetImpl.java53 private byte suspendPolicy; field in class:EventSetImpl
57 String string = "event set, policy:" + suspendPolicy +
580 suspendPolicy = JDWP.SuspendPolicy.NONE;
609 suspendPolicy = compEvt.suspendPolicy;
611 switch(suspendPolicy) {
644 suspendPolicy == JDWP.SuspendPolicy.EVENT_THREAD) {
667 if (suspendPolicy == JDWP.SuspendPolicy.ALL) {
669 } else if (suspendPolicy == JDWP.SuspendPolicy.EVENT_THREAD) {
677 suspendPolicy
784 public int suspendPolicy() { method in class:EventSetImpl
[all...]
H A DEventRequestManagerImpl.java98 byte suspendPolicy = JDWP.SuspendPolicy.ALL; field in class:EventRequestManagerImpl.EventRequestImpl
186 suspendPolicy = JDItoJDWPSuspendPolicy(policy);
189 public int suspendPolicy() { method in class:EventRequestManagerImpl.EventRequestImpl
190 return JDWPtoJDISuspendPolicy(suspendPolicy);
203 suspendPolicy, mods).requestID;

Completed in 71 milliseconds