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

12

/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/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();
/openjdk7/jdk/test/java/lang/ThreadGroup/
H A DSuspend.java44 group.suspend();
59 // Wait for the thread group suspend to be issued
/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/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/helper/
H A DAbstractTubeImpl.java80 na.suspend();
86 na.suspend(next);
/openjdk7/hotspot/src/share/vm/runtime/
H A Dtimer.hpp102 void suspend() { if (_active) _t.stop(); } function in class:TraceTime
/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...]
/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
H A DPopAndInvokeTest.java72 * waiter(). Debugger will then do a suspend,
165 vm().suspend();
H A DPopAsynchronousTest.java115 mainThread.suspend();
H A DResumeOneThreadTest.java139 // suspend everything.
141 vm().suspend();
154 // bkpt, and by the above vm().suspend(), so we have to resume
H A DInstancesTest.java168 vm().suspend();
/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.
/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/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.hpp408 // All attempts by JVMTI to suspend and resume threads must go through the
415 // suspend the thread, taking it to a safepoint
416 static bool suspend(JavaThread *java_thread);
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DExecutionManager.java486 vm().suspend();
572 thread.suspend();
/openjdk7/jdk/src/share/back/
H A DThreadReferenceImpl.c77 suspend(PacketInputStream *in, PacketOutputStream *out) function
669 (void *)suspend,
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/livejvm/
H A DServiceabilityAgentJVMDIModule.java223 public void suspend() { method in class:ServiceabilityAgentJVMDIModule

Completed in 81 milliseconds

12