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

12

/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DThreadGroupReference.java75 * resumed as described in {@link ThreadReference#resume}.
78 void resume(); method in interface:ThreadGroupReference
H A DThreadReference.java65 * {@link #resume} or resumed with other threads through
66 * {@link VirtualMachine#resume}.
71 * (through {@link #resume} or {@link ThreadReference#resume})
81 * resumed through one of the JDI resume methods mentioned above;
82 * the application in the target VM cannot resume the suspended thread
83 * through {@link java.lang.Thread#resume}.
95 * Note: the normal way to resume from an event related suspension is
96 * via {@link com.sun.jdi.event.EventSet#resume}.
99 void resume(); method in interface:ThreadReference
[all...]
H A DVirtualMachine.java244 * (through {@link #resume} or {@link ThreadReference#resume})
254 * {@link ThreadReference#resume}.
260 void resume(); method in interface:VirtualMachine
/openjdk7/jdk/src/share/classes/com/sun/jdi/event/
H A DEventSet.java50 * {@link #resume() EventSet.resume()}.
163 * {@link com.sun.jdi.VirtualMachine#resume}. If the
167 * {@link com.sun.jdi.ThreadReference#resume} for the event thread.
170 void resume(); method in interface:EventSet
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/
H A DProcessControl.java64 public void resume() throws DebuggerException; method in interface:ProcessControl
103 /** Informs the target process to resume past this debug event. The
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DThreadGroupReferenceImpl.java58 public void resume() { method in class:ThreadGroupReferenceImpl
59 vm.throwNotReadOnlyException("ThreadGroupReference.resume()");
H A DThreadReferenceImpl.java95 public void resume() { method in class:ThreadReferenceImpl
96 vm.throwNotReadOnlyException("ThreadReference.resume()");
H A DVirtualMachineImpl.java491 public void resume() { method in class:VirtualMachineImpl
492 throwNotReadOnlyException("VirtualMachineImpl.resume()");
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DThreadGroupReferenceImpl.java98 public void resume() { method in class:ThreadGroupReferenceImpl
100 thread.resume();
104 threadGroup.resume();
H A DThreadReferenceImpl.java84 * (ie, a resume() is executed) at certain points in the execution
89 * effect at the point that the copy was made; if a racy resume
94 * it returns this, a resume of the debuggee thread is executed in a
146 * listeners when we processed the resume.
182 * implicit vm-wide resume.
202 public void resume() { method in class:ThreadReferenceImpl
H A DEventSetImpl.java134 * then we have to resume it if it is not SUSPEND_NONE
641 // have to resume it. Note that events for different
668 vm.resume();
672 fix6485605.resume();
674 // apparently, there is nothing to resume.
797 public void resume() { method in class:EventSetImpl
800 vm.resume();
807 thread.resume();
H A DVirtualMachineImpl.java390 * implicit vm-wide resume. The VM can no longer be considered
415 public void resume() { method in class:VirtualMachineImpl
429 * then when it does an EventSet.resume after getting the
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/event/
H A DAbstractEventSet.java120 public void resume() { method in class:AbstractEventSet
121 jdiEventSet.resume();
/openjdk7/jdk/src/share/back/
H A DThreadReferenceImpl.c99 resume(PacketInputStream *in, PacketOutputStream *out) function
670 (void *)resume,
H A DVirtualMachineImpl.c592 resume(PacketInputStream *in, PacketOutputStream *out) function
902 ,(void *)resume
/openjdk7/hotspot/src/share/vm/runtime/
H A Dtimer.hpp103 void resume() { if (_active) _t.start(); } function in class:TraceTime
/openjdk7/jdk/src/share/classes/java/lang/
H A DThreadGroup.java718 * This method then calls the <code>resume</code> method on all the
725 * @see java.lang.Thread#resume()
734 public final void resume() { method in class:ThreadGroup
740 threads[i].resume();
750 groupsSnapshot[i].resume();
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>.
883 resume(); // Wake up thread if it was suspended; no-op otherwise
1003 * Why are Thread.stop, Thread.suspend and Thread.resume Deprecated?</a>.
1037 * the thread that would resume the target thread attempts to lock this
1038 * monitor prior to calling <code>resume</code>, deadlock results. Such
1042 * are Thread.stop, Thread.suspend and Thread.resume Deprecated?</a>.
1068 * are Thread.stop, Thread.suspend and Thread.resume Deprecated?</a>.
1071 public final void resume() { method in class:Thread
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DBugSpotAgent.java205 public synchronized void resume() throws DebuggerException { method in class:BugSpotAgent
206 getProcessControl().resume();
267 jvmdi.resume();
608 resume();
H A DBugSpot.java151 resume();
565 resume(); // Necessary for JVMDI resumption
1196 // Suspend/resume
1217 private synchronized void resume() { method in class:BugSpot
1228 agent.resume();
1295 prctl.resume();
1317 agent.resume();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/
H A DFiber.java59 * {@link #resume(Packet) resumed}. This allows threads to go execute
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()}.
130 * <li>"External mechanism" becomes signal state and invokes {@link Fiber#resume(Packet)}
137 * {@link #resume(Packet)} occurs before {@link #suspend()}.
263 * {@link Tube} in the {@link Fiber}'s processing stack with the specified resume
270 * specified resume packet as the parameter.
279 public synchronized void resume(@NotNull Packet resumePacket) { method in class:Fiber
309 public synchronized void resume(@NotNull Throwable throwable) { method in class:Fiber
325 * Suspends this fiber's execution until the resume metho
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/livejvm/
H A DServiceabilityAgentJVMDIModule.java232 public void resume() { method in class:ServiceabilityAgentJVMDIModule
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/
H A DProcDebuggerLocal.java185 public synchronized void resume() throws DebuggerException { method in class:ProcDebuggerLocal
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassLoader.hpp406 inline void resume() { _t.start(); _timers[_event_type].start(); } function in class:PerfClassTraceTime
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiImpl.cpp847 // but it is possible for a racing resume request to have resumed
863 bool JvmtiSuspendControl::resume(JavaThread *java_thread) { function in class:JvmtiSuspendControl
867 // resume thread

Completed in 2760 milliseconds

12