/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";
|
/external/chromium_org/net/dns/ |
serial_worker.h | 51 bool IsCancelled() const { return state_ == CANCELLED; } 68 CANCELLED = -1,
|
serial_worker.cc | 46 case CANCELLED: 57 state_ = CANCELLED; 70 case CANCELLED: 88 case 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/chromium_org/chromeos/dbus/ |
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).
|
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_agent_service_provider.cc | 356 case Delegate::CANCELLED: { 391 case Delegate::CANCELLED: { 421 case Delegate::CANCELLED: {
|
bluetooth_profile_service_provider.cc | 204 case Delegate::CANCELLED: {
|
fake_bluetooth_device_client.cc | [all...] |
/external/chromium_org/device/bluetooth/ |
bluetooth_pairing_chromeos.cc | 59 BluetoothAgentServiceProvider::Delegate::CANCELLED, ""); 64 BluetoothAgentServiceProvider::Delegate::CANCELLED, 0); 69 BluetoothAgentServiceProvider::Delegate::CANCELLED); 227 BluetoothAgentServiceProvider::Delegate::CANCELLED);
|
/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 :
|
suggest_apps_dialog.js | 120 // User cancelled the suggest app dialog. No message should be shown. 394 case AppInstaller.Result.CANCELLED: 396 SuggestAppsDialog.Metrics.INSTALL.CANCELLED); 397 // User cancelled the installation. Do nothing. 424 SuggestAppsDialog.Metrics.LOAD.CANCELLED); 502 CANCELLED: 1, 532 CANCELLED: 1,
|
/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_install_dialog.js | 76 that.onErrorHandler_(remoting.Error.CANCELLED); 111 this.onErrorHandler_(remoting.Error.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);
|
host_installer.js | 102 throw new Error(remoting.Error.CANCELLED);
|
/external/chromium_org/chrome/browser/download/ |
download_item_model_unittest.cc | 168 "Cancelled" }, 398 { DownloadItem::CANCELLED, false, false, false, false}, 399 { DownloadItem::CANCELLED, false, true , false, false}, 400 { DownloadItem::CANCELLED, true , false, false, false}, 401 { DownloadItem::CANCELLED, true , true , false, false},
|
download_path_reservation_tracker.cc | 316 case DownloadItem::CANCELLED: 336 // Items should be COMPLETE/INTERRUPTED/CANCELLED before being destroyed.
|
/external/chromium_org/components/navigation_interception/ |
intercept_navigation_resource_throttle_unittest.cc | 79 CANCELLED 93 status_ = CANCELLED; 172 MockResourceController::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/chrome/browser/plugins/ |
plugin_installer.cc | 42 case DownloadItem::CANCELLED: {
|
/external/chromium_org/content/browser/android/ |
download_controller_android_impl.cc | 266 if (item->IsDangerous() && (item->GetState() != DownloadItem::CANCELLED)) 302 case DownloadItem::CANCELLED:
|
/external/chromium_org/content/browser/appcache/ |
appcache_update_job.h | 87 CANCELLED,
|
/external/chromium_org/content/browser/download/ |
drag_download_file.cc | 111 state == DownloadItem::CANCELLED ||
|
/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...] |