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

1 2 3

  /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).
86 // cancelled.
110 // cancelled.
127 // rejected or cancelled).
143 // |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,
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
app_installer.js 32 CANCELLED: 'AppInstaller.cancelled',
44 AppInstaller.USER_CANCELLED_ERROR_STR_ = 'User cancelled install';
74 AppInstaller.Result.CANCELLED :
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
MmiCode.java 29 CANCELLED,
54 * State becomes CANCELLED unless already COMPLETE or FAILED
Connection.java 337 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/mojo/public/java/system/src/org/chromium/mojo/system/
MojoResult.java 12 public static final int CANCELLED = -1;
43 case CANCELLED:
44 return "CANCELLED";
  /frameworks/base/services/core/java/com/android/server/notification/
RankingReconsideration.java 31 private static final int CANCELLED = 3;
70 mState = CANCELLED;
77 return mState == CANCELLED;
  /external/chromium_org/components/navigation_interception/
intercept_navigation_resource_throttle_unittest.cc 79 CANCELLED
93 status_ = CANCELLED;
172 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 44 CANCELLED: 2,
161 } else if (result == remoting.HostController.AsyncResult.CANCELLED) {
162 onStartError(remoting.Error.CANCELLED);
378 } else if (result == remoting.HostController.AsyncResult.CANCELLED) {
379 onError(remoting.Error.CANCELLED);
415 } else if (result == remoting.HostController.AsyncResult.CANCELLED) {
416 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 109 * (including the case where a task was cancelled without executing);
112 * true if the task was cancelled (in which case {@link #getException}
115 * cancelled or encountered an exception, in which case {@link
201 * DONE_MASK) holds value NORMAL, CANCELLED, or EXCEPTIONAL. Tasks
222 static final int CANCELLED = 0xc0000000; // must be < NORMAL
223 static final int EXCEPTIONAL = 0x80000000; // must be < CANCELLED
231 * @param completion one of NORMAL, CANCELLED, EXCEPTIONAL
634 if (s == CANCELLED)
705 * other may be cancelled. However, the execution status of
709 * cancelled, completed normally or exceptionally, or lef
    [all...]
  /external/chromium_org/content/browser/appcache/
appcache_update_job.h 87 CANCELLED,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
RecentTasksLoader.java 76 private enum State { LOADING, LOADED, CANCELLED };
77 private State mState = State.CANCELLED;
315 mState = State.CANCELLED;
420 if (mState != State.CANCELLED) {
539 // thumbnails and icons for them. finish thread when cancelled or there
  /external/chromium_org/chrome/browser/resources/downloads/
downloads.js 449 CANCELLED: 'CANCELLED',
748 case Download.States.CANCELLED:
    [all...]
  /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 

Completed in 2995 milliseconds

1 2 3