Searched refs:cancel (Results 26 - 50 of 111) sorted by relevance

12345

/openjdk7/jdk/test/java/nio/channels/Selector/
H A DRacyDeregister.java138 key[0].cancel();
144 key2.cancel();
H A DAlias.java78 key.cancel();
H A DSelectAndCancel.java72 sk.cancel();
H A DBasicConnect.java74 sk.cancel();
/openjdk7/jdk/test/java/nio/channels/spi/SelectorProvider/inheritedChannel/
H A DStateTest.java80 sk.cancel();
108 sk.cancel();
/openjdk7/jdk/test/java/util/Timer/
H A DDelayOverflow.java90 check(task.cancel());
91 timer.cancel();
/openjdk7/jdk/test/java/util/concurrent/ScheduledThreadPoolExecutor/
H A DDecorateTask.java57 public boolean cancel(boolean mayInterruptIfRunning) {
58 return task.cancel(mayInterruptIfRunning);
/openjdk7/jdk/src/share/classes/java/nio/channels/spi/
H A DAbstractSelector.java87 void cancel(SelectionKey k) { // package-private method in class:AbstractSelector
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapRequest.java61 synchronized void cancel() { method in class:LdapRequest
/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/test/java/util/concurrent/FutureTask/
H A DCustomized.java105 static <V> void cancel(FutureTask<V> task, boolean mayInterruptIfRunning) { method in class:Customized
106 task.cancel(mayInterruptIfRunning);
142 cancel(task, false);
144 cancel(task, false);
H A DThrow.java78 taskFor(c, d).cancel(false);}},
89 check(task.cancel(false));
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DCompletedFuture.java93 public boolean cancel(boolean mayInterruptIfRunning) { method in class:CompletedFuture
/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DAbstractWatchService.java51 public void cancel() {
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/test/java/util/concurrent/BlockingQueue/
H A DCancelledProducerConsumerLoops.java94 if (!prods[i].cancel(true))
96 if (!cons[i].cancel(true))
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/protocol/local/
H A DMonitoredHostProvider.java117 task.cancel();
136 task.cancel();
/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...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DMediaTracker.java732 cur.cancel();
763 cur.cancel();
798 cur.cancel();
852 void cancel() { method in class:MediaEntry
/openjdk7/jdk/src/share/demo/applets/Blink/
H A DBlink.java126 timer.cancel(); //stops the timer
/openjdk7/jdk/src/share/classes/sun/rmi/transport/
H A DDGCAckHandler.java132 task.cancel(false);
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DAbstractExecutorService.java208 f.cancel(true);
254 f.cancel(true);
305 f.cancel(true);
H A DScheduledThreadPoolExecutor.java139 * leads to overrides of shutdown methods to remove and cancel
151 * False if should cancel/suppress periodic tasks on shutdown.
156 * False if should cancel non-periodic tasks on shutdown.
161 * True if ScheduledFutureTask.cancel should remove from queue
277 public boolean cancel(boolean mayInterruptIfRunning) { method in class:ScheduledThreadPoolExecutor.ScheduledFutureTask
278 boolean cancelled = super.cancel(mayInterruptIfRunning);
290 cancel(false);
318 * is being added, cancel and remove it if required by state and
331 task.cancel(false);
347 task.cancel(fals
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DLaunchTool.java250 JButton cancel = new JButton("Cancel");
252 buttonPanel.add(cancel);
254 cancel.addActionListener( new ActionListener() {
/openjdk7/jdk/src/share/demo/jfc/Metalworks/
H A DMetalworksPrefs.java89 JButton cancel = new JButton("Cancel");
90 cancel.addActionListener(new ActionListener() {
96 buttonPanel.add(cancel);

Completed in 117 milliseconds

12345