Searched refs:cancel (Results 1 - 25 of 121) sorted by relevance

12345

/external/webkit/WebKit/mac/Misc/
H A DWebIconFetcher.h34 - (void)cancel;
/external/guava/src/com/google/common/util/concurrent/
H A DValueFuture.java74 public boolean cancel(boolean mayInterruptIfRunning) { method in class:ValueFuture
75 return super.cancel();
H A DAbstractCheckedFuture.java63 cancel(true);
80 cancel(true);
91 public boolean cancel(boolean mayInterruptIfRunning) { method in class:AbstractCheckedFuture
92 return delegate.cancel(mayInterruptIfRunning);
H A DForwardingFuture.java42 public boolean cancel(boolean mayInterruptIfRunning) { method in class:ForwardingFuture
43 return delegate().cancel(mayInterruptIfRunning);
H A DAbstractFuture.java37 * {@link #cancel()}. If subclasses want to implement cancellation they can
38 * override the {@link #cancel(boolean)} method with a real implementation, the
87 * Default implementation of cancel that never cancels the future.
90 public boolean cancel(boolean mayInterruptIfRunning) { method in class:AbstractFuture
143 protected final boolean cancel() { method in class:AbstractFuture
144 boolean result = sync.cancel();
296 boolean cancel() { method in class:AbstractFuture.Sync
/external/dropbear/debian/
H A Ddropbear.init17 cancel() { echo "$1" >&2; exit 0; };
19 test -x "$DAEMON" || cancel "$DAEMON does not exist or is not executable."
21 cancel '/var/service/dropbear exists, service is controlled through runit.'
32 test "$NO_START" = "0" || cancel 'NO_START is not set to zero.'
45 test "$NO_START" = "0" || cancel 'NO_START is not set to zero.'
/external/webkit/WebKit/win/Interfaces/
H A DIWebIconFetcher.idl55 HRESULT cancel();
/external/webkit/WebKit/chromium/public/
H A DWebNotificationPresenter.h56 virtual void cancel(const WebNotification&) = 0;
H A DWebURLLoader.h63 virtual void cancel() = 0;
/external/webkit/WebCore/notifications/
H A DNotificationPresenter.h62 virtual void cancel(Notification*) = 0;
H A DNotification.cpp98 void Notification::cancel() function in class:WebCore::Notification
101 m_presenter->cancel(this);
H A DNotification.idl39 void cancel();
/external/webkit/WebCore/platform/network/android/
H A DResourceLoaderAndroid.h43 virtual void cancel() = 0;
/external/webkit/WebKit/win/
H A DWebIconFetcher.h42 virtual HRESULT STDMETHODCALLTYPE cancel();
/external/webkit/WebKit/chromium/src/
H A DNotificationPresenterImpl.cpp85 void NotificationPresenterImpl::cancel(Notification* notification) function in class:WebKit::NotificationPresenterImpl
87 m_presenter->cancel(PassRefPtr<Notification>(notification));
H A DResourceHandle.cpp63 void cancel();
92 void ResourceHandleInternal::cancel() function in class:WebCore::ResourceHandleInternal
94 m_loader->cancel();
216 void ResourceHandle::cancel() function in class:WebCore::ResourceHandle
218 d->cancel();
/external/bluetooth/glib/gio/fam/
H A Dgfamdirectorymonitor.c113 file_monitor_class->cancel = g_fam_directory_monitor_cancel;
138 if (G_FILE_MONITOR_CLASS (g_fam_directory_monitor_parent_class)->cancel)
139 (*G_FILE_MONITOR_CLASS (g_fam_directory_monitor_parent_class)->cancel) (monitor);
H A Dgfamfilemonitor.c113 file_monitor_class->cancel = g_fam_file_monitor_cancel;
136 if (G_FILE_MONITOR_CLASS (g_fam_file_monitor_parent_class)->cancel)
137 (*G_FILE_MONITOR_CLASS (g_fam_file_monitor_parent_class)->cancel) (monitor);
/external/bluetooth/glib/gio/fen/
H A Dgfendirectorymonitor.c123 directory_monitor_class->cancel = g_fen_directory_monitor_cancel;
145 if (G_FILE_MONITOR_CLASS (g_fen_directory_monitor_parent_class)->cancel)
146 (*G_FILE_MONITOR_CLASS (g_fen_directory_monitor_parent_class)->cancel) (monitor);
H A Dgfenfilemonitor.c123 file_monitor_class->cancel = g_fen_file_monitor_cancel;
144 if (G_FILE_MONITOR_CLASS (g_fen_file_monitor_parent_class)->cancel)
145 (*G_FILE_MONITOR_CLASS (g_fen_file_monitor_parent_class)->cancel) (monitor);
/external/bluetooth/glib/gio/inotify/
H A Dginotifydirectorymonitor.c121 directory_monitor_class->cancel = g_inotify_directory_monitor_cancel;
145 if (G_FILE_MONITOR_CLASS (g_inotify_directory_monitor_parent_class)->cancel)
146 (*G_FILE_MONITOR_CLASS (g_inotify_directory_monitor_parent_class)->cancel) (monitor);
H A Dginotifyfilemonitor.c140 file_monitor_class->cancel = g_inotify_file_monitor_cancel;
163 if (G_FILE_MONITOR_CLASS (g_inotify_file_monitor_parent_class)->cancel)
164 (*G_FILE_MONITOR_CLASS (g_inotify_file_monitor_parent_class)->cancel) (monitor);
/external/webkit/WebCore/loader/
H A DPolicyCallback.h65 void cancel();
H A DRedirectScheduler.h65 void cancel(bool newLoadInProgress = false);
H A DThreadableLoader.h73 virtual void cancel() = 0;

Completed in 178 milliseconds

12345