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

12

/openjdk7/jdk/src/share/classes/javax/print/
H A DCancelablePrintJob.java29 * This interface is used by a printing application to cancel a
33 * cancelled. Before trying to cancel
61 * printed, some portion may already have printed when cancel returns.
71 * may wish to execute cancel in a thread which does not affect
75 public void cancel() throws PrintException; method in interface:CancelablePrintJob
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/tasks/
H A DTask.java37 * <li><code>public void cancel(): </code></li>
43 * either <code>run()</code> or <code>cancel()</code>.
63 * Note that only one of run() or cancel() will be called - and exactly
66 public void cancel(); method in interface:Task
/openjdk7/jdk/src/share/classes/java/nio/channels/spi/
H A DAbstractSelectionKey.java66 public final void cancel() { method in class:AbstractSelectionKey
73 ((AbstractSelector)selector()).cancel(this);
H A DAbstractSelector.java87 void cancel(SelectionKey k) { // package-private method in class:AbstractSelector
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DWatchKey.java37 * <li> It is cancelled, explicitly, by invoking its {@link #cancel cancel}
133 void cancel(); method in interface:WatchKey
/openjdk7/jdk/src/share/classes/java/util/
H A DTimerTask.java65 * This task has been cancelled (with a call to TimerTask.cancel).
116 public boolean cancel() { method in class:TimerTask
H A DTimer.java50 * should invoke the timer's <tt>cancel</tt> method.
55 * <tt>IllegalStateException</tt>, as if the timer's <tt>cancel</tt>
428 public void cancel() { method in class:Timer
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DFuture.java45 * <tt>cancel</tt> method. Additional methods are provided to
99 * Attempts to cancel execution of this task. This attempt will
102 * and this task has not started when <tt>cancel</tt> is called,
119 boolean cancel(boolean mayInterruptIfRunning); method in interface:Future
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DCompletedFuture.java47 public boolean cancel(boolean mayInterruptIfRunning) { method in class:CompletedFuture
/openjdk7/jdk/src/solaris/native/sun/nio/fs/
H A DUnixCopyFile.c57 volatile jint* cancel = (jint*)jlong_to_ptr(cancelAddress); local
67 if (cancel != NULL && *cancel != 0) {
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DCompletedFuture.java93 public boolean cancel(boolean mayInterruptIfRunning) { method in class:CompletedFuture
H A DPendingFuture.java110 task.cancel(false);
140 timeoutTask.cancel(false);
158 timeoutTask.cancel(false);
226 public boolean cancel(boolean mayInterruptIfRunning) { method in class:PendingFuture
235 // set result and cancel timer
239 timeoutTask.cancel(false);
242 // close channel if forceful cancel
/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DCancellable.java74 final void cancel() { method in class:Cancellable
116 * thread is interrupted then an attempt is make to cancel the background
128 task.cancel();
H A DAbstractPoller.java37 * also services "requests" from clients to register for new events or cancel
83 * Executed by poller thread to cancel key
88 * Executed by poller thread to shutdown and cancel all keys
132 * Cancels, and waits on, poller thread to cancel given key.
134 final void cancel(WatchKey key) { method in class:AbstractPoller
H A DPollingWatchService.java300 poller.cancel(false);
305 public void cancel() { method in class:PollingWatchService.PollingWatchKey
330 // directory is no longer accessible so cancel key
331 cancel();
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapRequest.java61 synchronized void cancel() { method in class:LdapRequest
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DSelectionKey.java38 * {@link #cancel cancel} method, by closing its channel, or by closing its
160 public abstract void cancel(); method in class:SelectionKey
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Settings/src/com/sun/hotspot/igv/settings/
H A DViewOptionsPanelController.java53 public void cancel() { method in class:ViewOptionsPanelController
/openjdk7/jdk/src/share/classes/sun/misc/
H A DGC.java228 public void cancel() { method in class:GC.LatencyRequest
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/test/com/sun/jmx/examples/scandir/
H A DScanManagerTest.java133 public void cancel() throws Exception; method in interface:ScanManagerTest.Call
147 public void cancel() throws Exception {
214 op.cancel();
283 public void cancel() throws Exception {
320 public void cancel() throws Exception {
349 public void cancel() throws Exception {
/openjdk7/jdk/src/share/classes/java/awt/print/
H A DPrinterJob.java251 * @return <code>true</code> if the user does not cancel the dialog;
295 * @return <code>true</code> if the user does not cancel the dialog;
358 * @return a page format if the user does not cancel the dialog;
607 public abstract void cancel(); method in class:PrinterJob
/openjdk7/hotspot/src/share/vm/trace/
H A DtraceEvent.hpp89 cancel();
129 void cancel() { function in class:TraceEvent
/openjdk7/jdk/src/share/classes/javax/swing/
H A DSwingWorker.java545 public final boolean cancel(boolean mayInterruptIfRunning) { method in class:SwingWorker
546 return future.cancel(mayInterruptIfRunning);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicDirectoryModel.java341 runnable.cancel();
469 synchronized void cancel() { method in class:BasicDirectoryModel.DoChangeContents
/openjdk7/jdk/src/share/classes/java/sql/
H A DStatement.java62 * method has been exceeded and has at least attempted to cancel
87 * method has been exceeded and has at least attempted to cancel
243 * This method can be used by one thread to cancel a statement that
251 void cancel() throws SQLException; method in interface:Statement
340 * method has been exceeded and has at least attempted to cancel
575 * method has been exceeded and has at least attempted to cancel
742 * method has been exceeded and has at least attempted to cancel
777 * method has been exceeded and has at least attempted to cancel
811 * method has been exceeded and has at least attempted to cancel
859 * method has been exceeded and has at least attempted to cancel
[all...]

Completed in 116 milliseconds

12