HomeSort by relevance Sort by last modified time
    Searched refs:cancelled (Results 1 - 25 of 63) sorted by null

1 2 3

  /libcore/luni/src/main/java/java/util/
TimerTask.java 31 /* If timer was cancelled */
32 boolean cancelled; field in class:TimerTask
93 boolean willRun = !cancelled && when > 0;
94 cancelled = true;
Timer.java 46 * cancelled may hold resources indefinitely.
146 if (timers[i].cancelled) {
170 private boolean cancelled; field in class:Timer.TimerImpl
204 // need to check cancelled inside the synchronized block
205 if (cancelled) {
226 if (task.cancelled) {
251 if (task.cancelled) {
289 cancelled = true;
306 cancelled = true;
560 if (impl.cancelled) {
    [all...]
  /external/chromium/crypto/
crypto_module_blocking_password_delegate.h 25 // The implementation should set |*cancelled| to true if the user cancelled
29 bool* cancelled) = 0;
  /external/bluetooth/glib/gio/inotify/
inotify-sub.h 31 gboolean cancelled; member in struct:__anon2029
inotify-helper.c 128 if (!sub->cancelled)
131 sub->cancelled = TRUE;
  /external/bluetooth/glib/gio/fam/
fam-helper.c 41 gboolean cancelled; member in struct:_fam_sub
77 gboolean cancelled; local
90 cancelled = sub->cancelled;
91 if (ev.code == FAMAcknowledge && cancelled)
97 if (cancelled)
247 if (sub->cancelled)
250 sub->cancelled = TRUE;
  /external/chromium/chrome/browser/importer/
importer.h 43 bool cancelled() const { return cancelled_; } function in class:Importer
firefox3_importer.cc 78 if ((items & importer::HOME_PAGE) && !cancelled())
84 if ((items & importer::HISTORY) && !cancelled()) {
90 if ((items & importer::FAVORITES) && !cancelled()) {
95 if ((items & importer::SEARCH_ENGINES) && !cancelled()) {
100 if ((items & importer::PASSWORDS) && !cancelled()) {
133 while (s.Step() && !cancelled()) {
150 if (!rows.empty() && !cancelled())
198 while (s.Step() && !cancelled())
291 if (!bookmarks.empty() && !cancelled()) {
299 if (!template_urls.empty() && !cancelled()) {
    [all...]
toolbar_importer.cc 54 // their thread-safe implementation requires that they are cancelled from the
102 if (cancelled()) {
139 if ((items_to_import_ & importer::FAVORITES) && !cancelled()) {
149 if (!cancelled())
187 if (cancelled()) {
214 if (cancelled()) {
248 if (cancelled()) {
256 if (reader.Load(response) && !cancelled()) {
553 if (!bookmarks.empty() && !cancelled()) {
ie_importer.cc 94 if ((items & importer::HOME_PAGE) && !cancelled())
97 if ((items & importer::HISTORY) && !cancelled()) {
102 if ((items & importer::FAVORITES) && !cancelled()) {
107 if ((items & importer::SEARCH_ENGINES) && !cancelled()) {
112 if ((items & importer::PASSWORDS) && !cancelled()) {
137 if (!bookmarks.empty() && !cancelled()) {
165 while (!cancelled() &&
198 if (!rows.empty() && !cancelled()) {
246 while (!cancelled() && SUCCEEDED(item->Next(1, &item_name, 0))) {
336 while (reg_iterator.Valid() && !cancelled()) {
    [all...]
firefox2_importer.cc 62 if ((items & importer::HOME_PAGE) && !cancelled())
68 if ((items & importer::HISTORY) && !cancelled()) {
74 if ((items & importer::FAVORITES) && !cancelled()) {
79 if ((items & importer::SEARCH_ENGINES) && !cancelled()) {
84 if ((items & importer::PASSWORDS) && !cancelled()) {
170 for (size_t i = 0; i < lines.size() && (!importer || !importer->cancelled());
317 if (!bookmarks.empty() && !cancelled()) {
326 !cancelled()) {
356 if (!cancelled()) {
  /packages/apps/Launcher2/src/com/android/launcher2/
DropTarget.java 55 /** Indicates that the drag operation was cancelled */
56 public boolean cancelled = false; field in class:DropTarget.DragObject
  /external/bluetooth/glib/gio/
gcancellable.c 51 CANCELLED,
59 guint cancelled : 1; member in struct:_GCancellable
102 * GCancellable::cancelled:
105 * Emitted when the operation has been cancelled.
108 * operation is cancelled from another thread, the signal will be
109 * emitted in the thread that cancelled the operation, not the
122 * id = g_signal_connect (cancellable, "cancelled",
151 * id = g_signal_connect_data (cancellable, "cancelled",
164 signals[CANCELLED] =
165 g_signal_new (I_("cancelled"),
    [all...]
gfilemonitor.c 54 G_LOCK_DEFINE_STATIC(cancelled); variable
74 gboolean cancelled; member in struct:_GFileMonitorPrivate
134 G_LOCK (cancelled);
135 g_value_set_boolean (value, priv->cancelled);
136 G_UNLOCK (cancelled);
243 g_param_spec_boolean ("cancelled",
244 P_("Cancelled"),
245 P_("Whether the monitor has been cancelled"),
277 G_LOCK (cancelled);
278 res = monitor->priv->cancelled;
    [all...]
gcancellable.h 44 * Allows actions to be cancelled.
52 void (* cancelled) (GCancellable *cancellable); member in struct:_GCancellableClass
  /external/chromium/chrome/browser/ui/panels/
panel_manager.h 55 void EndDragging(bool cancelled);
  /external/webkit/Source/WebCore/loader/cache/
CachedResourceRequest.h 42 void didFail(bool cancelled = false);
CachedResourceRequest.cpp 179 void CachedResourceRequest::didFail(bool cancelled)
184 LOG(ResourceLoading, "Failed to load '%s' (cancelled=%d).\n", m_resource->url().latin1().data(), cancelled);
197 if (!cancelled) {
202 if (cancelled || !m_resource->isPreloaded())
  /frameworks/base/core/java/android/webkit/
SslErrorHandlerImpl.java 141 if (!loader.cancelled()) {
166 if (!loader.cancelled()) {
190 // if this loader has been cancelled
191 if (loader.cancelled()) {
255 if (!loader.cancelled()) {
StreamLoader.java 113 while (!sendData() && !mLoadListener.cancelled());
124 if (mLoadListener.cancelled()) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
DelayedLaunchInfo.java 232 * Set if launch has been cancelled
234 public void setCancelled(boolean cancelled) {
235 this.mCancelled = cancelled;
239 * @return true if launch has been cancelled
  /external/webkit/Source/WebCore/loader/
SubresourceLoader.cpp 184 if (cancelled())
196 if (cancelled())
204 if (cancelled())
216 if (cancelled())
232 if (cancelled())
265 // The SubResourceLoaderClient may have cancelled this ResourceLoader in response to the challenge.
  /external/chromium/chrome/browser/chromeos/
wm_overview_controller.h 116 // Hide the snapshot windows. When |cancelled| is true, then the
119 void Hide(bool cancelled);
  /frameworks/base/core/java/android/content/
AsyncTaskLoader.java 139 * method requests that the load be cancelled, and notes this is the case;
142 * it will be held until the cancelled load is complete.
144 * @return Returns <tt>false</tt> if the task could not be cancelled,
156 "cancelLoad: still waiting for cancelled task; dropping next");
172 boolean cancelled = mTask.cancel(false);
173 if (DEBUG) Slog.v(TAG, "cancelLoad: cancelled=" + cancelled);
174 if (cancelled) {
178 return cancelled;
217 if (DEBUG) Slog.v(TAG, "Cancelled task is now canceled!")
    [all...]
  /frameworks/support/v4/java/android/support/v4/content/
AsyncTaskLoader.java 124 * method requests that the load be cancelled, and notes this is the case;
127 * it will be held until the cancelled load is complete.
129 * @return Returns <tt>false</tt> if the task could not be cancelled,
141 "cancelLoad: still waiting for cancelled task; dropping next");
157 boolean cancelled = mTask.cancel(false);
158 if (DEBUG) Log.v(TAG, "cancelLoad: cancelled=" + cancelled);
159 if (cancelled) {
163 return cancelled;
202 if (DEBUG) Log.v(TAG, "Cancelled task is now canceled!")
    [all...]

Completed in 1056 milliseconds

1 2 3