Searched defs:suspend (Results 1 - 25 of 25) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DThreadGroupReference.java61 * suspended as described in {@link ThreadReference#suspend}.
70 void suspend(); method in interface:ThreadGroupReference
H A DThreadReference.java68 * Unlike {@link java.lang.Thread#suspend},
75 * as {@link java.lang.Thread#suspend()}. If the suspended thread
86 void suspend(); method in interface:ThreadReference
90 * through {@link #suspend} or through {@link VirtualMachine#suspend},
103 * {@link #suspend} for an explanation of counted suspends.
104 * @return pending suspend count as an integer
H A DVirtualMachine.java241 * Unlike {@link java.lang.Thread#suspend Thread.suspend()},
249 void suspend(); method in interface:VirtualMachine
258 * @see #suspend
426 * <li>All threads suspended by {@link #suspend} or by
427 * {@link ThreadReference#suspend} are resumed as many
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/
H A DProcessControl.java58 public void suspend() throws DebuggerException; method in interface:ProcessControl
94 debugEventContinue. Typically the application will suspend the
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DThreadGroupReferenceImpl.java54 public void suspend() { method in class:ThreadGroupReferenceImpl
55 vm.throwNotReadOnlyException("ThreadGroupReference.suspend()");
H A DThreadReferenceImpl.java91 public void suspend() { method in class:ThreadReferenceImpl
92 vm.throwNotReadOnlyException("ThreadReference.suspend()");
101 // we interpret this as one suspend.
H A DVirtualMachineImpl.java487 public void suspend() { method in class:VirtualMachineImpl
488 throwNotReadOnlyException("VirtualMachineImpl.suspend()");
/openjdk7/jdk/test/com/sun/jdi/
H A DExclusiveBind.java96 * suspend mode.
98 private static Process launch(String address, boolean suspend, String class_name) throws IOException { argument
111 " -agentlib:jdwp=transport=dt_socket,server=y,suspend=";
112 if (suspend) {
130 * - Launch a debuggee in server=y,suspend=y,address=${port}
131 * - Launch a second debuggee in server=y,suspend=n with the same port
146 // give first debuggee time to suspend
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DThreadGroupReferenceImpl.java88 public void suspend() { method in class:ThreadGroupReferenceImpl
90 thread.suspend();
94 threadGroup.suspend();
H A DThreadReferenceImpl.java192 public void suspend() { method in class:ThreadReferenceImpl
H A DVirtualMachineImpl.java217 * with external events in the same set, suspend policy is not
312 // flush caches and disable caching until the next suspend
405 public void suspend() { method in class:VirtualMachineImpl
/openjdk7/jdk/src/share/back/
H A DThreadReferenceImpl.c77 suspend(PacketInputStream *in, PacketOutputStream *out) function
669 (void *)suspend,
H A DVirtualMachineImpl.c576 suspend(PacketInputStream *in, PacketOutputStream *out) function
901 ,(void *)suspend
/openjdk7/hotspot/src/share/vm/runtime/
H A Dtimer.hpp102 void suspend() { if (_active) _t.stop(); } function in class:TraceTime
H A DperfData.hpp925 inline void suspend() { if (!UsePerfData) return; _t.stop(); } function in class:PerfTraceTime
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/
H A DNextAction.java109 public void suspend() { method in class:NextAction
118 public void suspend(Tube next) { method in class:NextAction
H A DFiber.java57 * Fiber can be {@link NextAction#suspend() suspended} by a {@link Tube}.
83 * Setting the {@link #LOGGER} for FINE would give you basic start/stop/resume/suspend
123 * where the thread is {@link #resume(Packet) resumed} before we get to the {@link #suspend()}.
129 * <li>Tube returns with {@link NextAction#suspend()}.
132 * <li>{@link Fiber#doRun} invokes {@link Fiber#suspend()}.
137 * {@link #resume(Packet)} occurs before {@link #suspend()}.
275 * need not worry about synchronizing {@link NextAction#suspend()} and this method.
305 * need not worry about synchronizing {@link NextAction#suspend()} and this method.
330 private synchronized void suspend() { method in class:Fiber
643 // If resume is called before suspend, the
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DThreadGroup.java659 * This method then calls the <code>suspend</code> method on all the
665 * @see java.lang.Thread#suspend()
670 * {@link Thread#suspend} for details.
673 public final void suspend() { method in class:ThreadGroup
675 Thread.currentThread().suspend();
685 private boolean stopOrSuspend(boolean suspend) { argument
695 else if (suspend)
696 threads[i].suspend();
707 suicide = groupsSnapshot[i].stopOrSuspend(suspend) || suicide;
729 * <tt>Thread.suspend</t
[all...]
H A DThread.java811 * are Thread.stop, Thread.suspend and Thread.resume Deprecated?</a>.
865 * are Thread.stop, Thread.suspend and Thread.resume Deprecated?</a>.
996 * much the manner of {@link #suspend}. If the target thread held
1003 * Why are Thread.stop, Thread.suspend and Thread.resume Deprecated?</a>.
1042 * are Thread.stop, Thread.suspend and Thread.resume Deprecated?</a>.
1045 public final void suspend() { method in class:Thread
1063 * @see #suspend()
1064 * @deprecated This method exists solely for use with {@link #suspend},
1068 * are Thread.stop, Thread.suspend and Thread.resume Deprecated?</a>.
1221 * @deprecated The definition of this call depends on {@link #suspend},
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DBugSpotAgent.java198 getProcessControl().suspend(). */
199 public synchronized void suspend() throws DebuggerException { method in class:BugSpotAgent
200 getProcessControl().suspend();
204 getProcessControl().suspend(). */
245 process has been suspended with suspend(). */
253 jvmdi.suspend();
259 process has been suspended with suspend(). */
610 suspend();
H A DBugSpot.java170 suspend();
1203 private synchronized void suspend() { method in class:BugSpot
1210 agent.suspend();
1267 prctl.suspend();
1344 agent.suspend();
1475 suspend();
1479 suspend();
1489 suspend();
1497 suspend();
1507 suspend();
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/livejvm/
H A DServiceabilityAgentJVMDIModule.java223 public void suspend() { method in class:ServiceabilityAgentJVMDIModule
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/
H A DProcDebuggerLocal.java174 public synchronized void suspend() throws DebuggerException { method in class:ProcDebuggerLocal
706 // for processes we cache load object list and sync. it during suspend.
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassLoader.hpp405 inline void suspend() { _t.stop(); _timers[_event_type].stop(); } function in class:PerfClassTraceTime
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiImpl.cpp836 bool JvmtiSuspendControl::suspend(JavaThread *java_thread) { function in class:JvmtiSuspendControl
837 // external suspend should have caught suspending a thread twice
864 // external suspend should have caught resuming a thread twice

Completed in 3577 milliseconds