HomeSort by relevance Sort by last modified time
    Searched defs:CANCELLED (Results 1 - 25 of 34) sorted by null

1 2

  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/
app_installer.js 32 CANCELLED: 'AppInstaller.cancelled',
44 AppInstaller.USER_CANCELLED_ERROR_STR_ = 'User cancelled install';
73 AppInstaller.Result.CANCELLED :
  /external/chromium_org/chromeos/dbus/
bluetooth_agent_service_provider.h 41 // permission; cancelled indicates the user cancelled the request
46 CANCELLED
51 // rejected or cancelled) and the |pincode| requested.
56 // rejected or cancelled) and the |passkey| requested, a numeric in the
62 // of the request (success, rejected or cancelled).
84 // cancelled.
108 // cancelled.
125 // rejected or cancelled).
141 // |callback| to provide their response (success, rejected or cancelled)
    [all...]
bluetooth_profile_service_provider.h 41 // reject indicates the user rejected or denied the request; cancelled
42 // means the user cancelled the request without confirming either way.
46 CANCELLED
63 // (success, rejected or cancelled).
  /external/chromium_org/net/dns/
serial_worker.h 51 bool IsCancelled() const { return state_ == CANCELLED; }
68 CANCELLED = -1,
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
MmiCode.java 29 CANCELLED,
49 * State becomes CANCELLED unless already COMPLETE or FAILED
Connection.java 63 CDMA_REORDER, /* MS has been redirected, call is cancelled */
243 CANCELLED, /* The post dial string playback was cancelled
  /external/chromium_org/content/public/browser/
download_item.h 60 // Download has been cancelled.
61 CANCELLED,
160 // Cancelled downloads return DOWNLOAD_INTERRUPT_REASON_USER_CANCELLED. If
174 // completed downloads, cancelled downloads, and interrupted downloads that
  /external/chromium_org/components/navigation_interception/
intercept_navigation_resource_throttle_unittest.cc 78 CANCELLED
92 status_ = CANCELLED;
169 MockResourceController::CANCELLED;
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractFuture.java 50 * completed, failed, or cancelled.
205 * {@link #COMPLETED} or {@link #CANCELLED}.
210 * computation, and only then transition to COMPLETED or CANCELLED.
223 static final int CANCELLED = 4;
268 * was cancelled, or a {@link ExecutionException} if the task completed with
294 case CANCELLED:
295 throw new CancellationException("Task was cancelled.");
304 * Checks if the state is {@link #COMPLETED} or {@link #CANCELLED}.
307 return (getState() & (COMPLETED | CANCELLED)) != 0;
311 * Checks if the state is {@link #CANCELLED}
    [all...]
  /external/smack/src/org/jivesoftware/smackx/packet/
MessageEvent.java 54 * event is cancelled first.</li>
65 public static final String CANCELLED = "cancelled";
71 private boolean cancelled = true; field in class:MessageEvent
145 * When the message is a notification returns if the receiver of the message cancelled
148 * @return true if the receiver of the message cancelled composing a reply
151 return cancelled;
176 allEvents.add(MessageEvent.CANCELLED);
244 * When the message is a notification sets if the receiver of the message cancelled
246 * The Cancelled event is never requested explicitly. It is requested implicitly whe
    [all...]
  /external/chromium_org/remoting/webapp/
error.js 16 // Used to signify that an operation was cancelled by the user. This should
19 CANCELLED: '__CANCELLED__',
host_controller.js 56 CANCELLED: 2,
138 } else if (result == remoting.HostController.AsyncResult.CANCELLED) {
139 onStartError(remoting.Error.CANCELLED);
334 } else if (result == remoting.HostController.AsyncResult.CANCELLED) {
335 onError(remoting.Error.CANCELLED);
371 } else if (result == remoting.HostController.AsyncResult.CANCELLED) {
372 onError(remoting.Error.CANCELLED);
  /libcore/luni/src/main/java/java/util/concurrent/
FutureTask.java 18 * or cancelled (unless the computation is invoked using
60 * NEW -> CANCELLED
68 private static final int CANCELLED = 4;
91 if (s >= CANCELLED)
128 return state >= CANCELLED;
138 mayInterruptIfRunning ? INTERRUPTING : CANCELLED)))
187 * has been cancelled.
193 * this future has already been set or has been cancelled.
211 * already been set or has been cancelled.
262 * computation encounters an exception or is cancelled. This i
    [all...]
ForkJoinTask.java 110 * (including the case where a task was cancelled without executing);
113 * true if the task was cancelled (in which case {@link #getException}
116 * cancelled or encountered an exception, in which case {@link
205 * DONE_MASK) holds value NORMAL, CANCELLED, or EXCEPTIONAL. Tasks
226 static final int CANCELLED = 0xc0000000; // must be < NORMAL
227 static final int EXCEPTIONAL = 0x80000000; // must be < CANCELLED
235 * @param completion one of NORMAL, CANCELLED, EXCEPTIONAL
628 if (s == CANCELLED)
699 * other may be cancelled. However, the execution status of
703 * cancelled, completed normally or exceptionally, or lef
    [all...]
  /external/chromium_org/webkit/browser/appcache/
appcache_update_job.h 76 CANCELLED,
  /external/chromium/chrome/browser/download/
download_item.h 48 // Download has been cancelled.
49 CANCELLED,
234 // Returns true if the download has been cancelled or was interrupted.
  /external/chromium_org/chrome/browser/resources/downloads/
downloads.js 397 CANCELLED: 'CANCELLED',
655 case Download.States.CANCELLED:
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
RecentTasksLoader.java 72 private enum State { LOADING, LOADED, CANCELLED };
73 private State mState = State.CANCELLED;
303 mState = State.CANCELLED;
406 if (mState != State.CANCELLED) {
523 // thumbnails and icons for them. finish thread when cancelled or there
  /external/libusb/libusb/os/
linux_usbfs.c 78 * cancellation, all URBs within that transfer will be cancelled with the
87 * transfer get cancelled) is already in effect, and setting this flag is
119 /* cancelled by user or timeout */
120 CANCELLED,
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/locks/
AbstractQueuedLongSynchronizer.java 85 * needed to handle cancellation. If a node is cancelled, its
86 * successor is (normally) relinked to a non-cancelled
104 * nodes, we can miss noticing whether a cancelled node is
135 /** waitStatus value to indicate thread has cancelled */
136 static final int CANCELLED = 1;
156 * CANCELLED: This node is cancelled due to timeout or interrupt.
158 * a thread with cancelled node never again blocks.
188 * finding a non-cancelled one, which will always exist
189 * because the head node is never cancelled: A node become
    [all...]
AbstractQueuedSynchronizer.java 315 * needed to handle cancellation. If a node is cancelled, its
316 * successor is (normally) relinked to a non-cancelled
334 * nodes, we can miss noticing whether a cancelled node is
365 /** waitStatus value to indicate thread has cancelled */
366 static final int CANCELLED = 1;
386 * CANCELLED: This node is cancelled due to timeout or interrupt.
388 * a thread with cancelled node never again blocks.
418 * finding a non-cancelled one, which will always exist
419 * because the head node is never cancelled: A node become
    [all...]
  /external/chromium_org/third_party/libusb/src/libusb/os/
linux_usbfs.c 87 * URBs within that transfer will be cancelled and no more URBs will be
157 /* cancelled by user or timeout */
158 CANCELLED,
    [all...]
  /prebuilts/devtools/tools/lib/
lint-api.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.2.0/
lint-api-22.2.0.jar 
  /prebuilts/sdk/tools/lib/
guava-10.0.1.jar 

Completed in 5073 milliseconds

1 2