/packages/apps/Dialer/src/com/android/dialer/list/ |
DragDropController.java | 34 * @return True if the drag is started, false if the drag is cancelled for some reason.
|
/packages/experimental/PrintApp/src/foo/bar/print/ |
PrintActivity.java | 124 // The task was not cancelled, so handle the layout result. 144 // Task was cancelled, report that. 214 // The task was not cancelled, so handle the write result. 231 // Task was cancelled, report that.
|
/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...] |
/external/chromium_org/base/ |
cancelable_callback_unittest.cc | 69 // callback() of a cancelled callback is null. 145 // - Cancel() transforms the CancelableCallback into a cancelled state. 160 // - Callbacks posted to a MessageLoop can be cancelled.
|
/external/chromium_org/chrome/browser/extensions/api/desktop_capture/ |
desktop_capture_apitest.cc | 30 bool cancelled; member in struct:extensions::__anon8235::TestFlags 57 if (!expectation_->cancelled) { 64 // If we expect the dialog to be cancelled then store the callback to
|
/external/chromium_org/chromeos/dbus/ |
fake_nfc_device_client.cc | 184 VLOG(1) << "Device pairing was cancelled."; 217 VLOG(1) << "Pairing was cancelled"; 238 VLOG(1) << "Simulation timeout was cancelled. Nothing to do.";
|
/external/chromium_org/content/browser/download/ |
download_stats.h | 43 // Downloads that are cancelled before completion (user action or error). 207 // The save package operation was cancelled. 210 // The save package operation finished without being cancelled.
|
/external/chromium_org/content/child/webcrypto/ |
webcrypto_impl.cc | 173 bool cancelled() { function in struct:content::__anon11822::BaseState 174 return result.cancelled(); 359 if (state->cancelled()) 375 if (state->cancelled()) 391 if (state->cancelled()) 412 if (state->cancelled()) 455 if (state->cancelled()) 491 if (state->cancelled()) 505 if (state->cancelled()) 526 if (state->cancelled()) [all...] |
/frameworks/base/core/java/android/print/ |
PrintJob.java | 165 * Gets whether this print job is cancelled. Such a print job was 166 * cancelled as a result of a user request. This is a final state. 169 * @return Whether the print job is cancelled.
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
TimerTaskTest.java | 26 * Timer is not cancelled. 86 // Ensure cancelled task never runs 161 assertFalse("TimerTask should have been cancelled", testTask
|
TimerTest.java | 35 * Timer is not cancelled. 202 // Ensure a task throws an IllegalStateException after cancelled 308 // Ensure a Timer throws an IllegalStateException after cancelled 320 // cancelled 416 // Ensure a Timer throws an IllegalStateException after cancelled 427 // cancelled 504 // Ensure a Timer throws an IllegalStateException after cancelled 515 // cancelled 617 // Ensure a Timer throws an IllegalStateException after cancelled 629 // cancelled [all...] |
/cts/tests/tests/content/src/android/content/cts/ |
AsyncQueryHandlerTest.java | 124 // insert will be cancelled. 171 // query will be cancelled. 198 // update will be cancelled. 238 // delete will be cancelled 329 * following operations should be cancelled successfully.
|
/external/chromium_org/remoting/webapp/ |
host_controller.js | 51 CANCELLED: 2, 168 } else if (result == remoting.HostController.AsyncResult.CANCELLED) { 169 onStartError(remoting.Error.CANCELLED); 364 } else if (result == remoting.HostController.AsyncResult.CANCELLED) { 365 onError(remoting.Error.CANCELLED); 401 } else if (result == remoting.HostController.AsyncResult.CANCELLED) { 402 onError(remoting.Error.CANCELLED);
|
/external/chromium_org/ui/file_manager/file_manager/foreground/js/ |
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,
|
/frameworks/base/services/core/java/com/android/server/job/ |
JobServiceContext.java | 197 /** Called externally when a job that was scheduled for execution should be cancelled. */ 353 Slog.d(TAG, "Job cancelled while waiting for bind to complete. " 387 Slog.d(TAG, "Job cancelled while waiting for onStartJob to complete."); 389 // Cancelled *while* waiting for acknowledgeStartMessage from client. 422 * VERB_BINDING -> Cancelled before bind completed. Mark as cancelled and wait for 424 * _STARTING -> Mark as cancelled and wait for
|
/external/chromium_org/chrome/utility/importer/ |
ie_importer_win.cc | 177 for (uint32 i = 0; i < item_count && !importer->cancelled(); ++i) { 229 child.Valid() && !importer->cancelled(); 416 if ((items & importer::HOME_PAGE) && !cancelled()) { 422 if ((items & importer::HISTORY) && !cancelled()) { 427 if ((items & importer::FAVORITES) && !cancelled()) { 432 if ((items & importer::SEARCH_ENGINES) && !cancelled()) { 437 if ((items & importer::PASSWORDS) && !cancelled()) { 461 if (!bookmarks.empty() && !cancelled()) { 466 if (!favicons.empty() && !cancelled()) 488 while (!cancelled() & [all...] |
/libcore/luni/src/main/java/java/util/concurrent/ |
SynchronousQueue.java | 102 * including cleaning out cancelled nodes/threads 115 * cancelled. But if it may be pinned as the current tail, it must 303 * returning it, or null if cancelled. 327 casHead(h, h.next); // pop cancelled node 332 if (m == s) { // wait was cancelled 341 if (h.isCancelled()) // already cancelled 380 * @return matched node, or s if cancelled 454 * follow s. We use s.next unless it too is cancelled, in 464 // Absorb cancelled nodes at head 571 * Reference to a cancelled node that might not yet have bee [all...] |
/developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/ |
AsyncTask.java | 155 * <p>A task can be cancelled at any time by invoking {@link #cancel(boolean)}. Invoking 159 * returns. To ensure that a task is cancelled as quickly as possible, you should always 389 * <p>This method won't be invoked if the task was cancelled.</p> 449 * Returns <tt>true</tt> if this task was cancelled before it completed 454 * @return <tt>true</tt> if task was cancelled before it completed 464 * fail if the task has already completed, already been cancelled, 465 * or could not be cancelled for some other reason. If successful, 484 * @return <tt>false</tt> if the task could not be cancelled, 502 * @throws java.util.concurrent.CancellationException If the computation was cancelled. 520 * @throws java.util.concurrent.CancellationException If the computation was cancelled [all...] |
ImageWorker.java | 188 Log.d(TAG, "cancelWork - cancelled work for " + bitmapData); 208 Log.d(TAG, "cancelPotentialWork - cancelled work for " + data); 261 // Wait here if work is paused and the task is not cancelled 270 // If the image cache is available and this task has not been cancelled by another 279 // If the bitmap was not found in the cache and this task has not been cancelled by 289 // bitmap to the cache for future use. Note we don't check if the task was cancelled
|
/developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/ |
AsyncTask.java | 155 * <p>A task can be cancelled at any time by invoking {@link #cancel(boolean)}. Invoking 159 * returns. To ensure that a task is cancelled as quickly as possible, you should always 389 * <p>This method won't be invoked if the task was cancelled.</p> 449 * Returns <tt>true</tt> if this task was cancelled before it completed 454 * @return <tt>true</tt> if task was cancelled before it completed 464 * fail if the task has already completed, already been cancelled, 465 * or could not be cancelled for some other reason. If successful, 484 * @return <tt>false</tt> if the task could not be cancelled, 502 * @throws java.util.concurrent.CancellationException If the computation was cancelled. 520 * @throws java.util.concurrent.CancellationException If the computation was cancelled [all...] |
ImageWorker.java | 188 Log.d(TAG, "cancelWork - cancelled work for " + bitmapData); 208 Log.d(TAG, "cancelPotentialWork - cancelled work for " + data); 261 // Wait here if work is paused and the task is not cancelled 270 // If the image cache is available and this task has not been cancelled by another 279 // If the bitmap was not found in the cache and this task has not been cancelled by 289 // bitmap to the cache for future use. Note we don't check if the task was cancelled
|
/development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/ |
AsyncTask.java | 155 * <p>A task can be cancelled at any time by invoking {@link #cancel(boolean)}. Invoking 159 * returns. To ensure that a task is cancelled as quickly as possible, you should always 389 * <p>This method won't be invoked if the task was cancelled.</p> 449 * Returns <tt>true</tt> if this task was cancelled before it completed 454 * @return <tt>true</tt> if task was cancelled before it completed 464 * fail if the task has already completed, already been cancelled, 465 * or could not be cancelled for some other reason. If successful, 484 * @return <tt>false</tt> if the task could not be cancelled, 502 * @throws java.util.concurrent.CancellationException If the computation was cancelled. 520 * @throws java.util.concurrent.CancellationException If the computation was cancelled [all...] |
ImageWorker.java | 188 Log.d(TAG, "cancelWork - cancelled work for " + bitmapData); 208 Log.d(TAG, "cancelPotentialWork - cancelled work for " + data); 261 // Wait here if work is paused and the task is not cancelled 270 // If the image cache is available and this task has not been cancelled by another 279 // If the bitmap was not found in the cache and this task has not been cancelled by 289 // bitmap to the cache for future use. Note we don't check if the task was cancelled
|
/frameworks/base/core/java/android/os/ |
AsyncTask.java | 135 * <p>A task can be cancelled at any time by invoking {@link #cancel(boolean)}. Invoking 139 * returns. To ensure that a task is cancelled as quickly as possible, you should always 364 * <p>This method won't be invoked if the task was cancelled.</p> 424 * Returns <tt>true</tt> if this task was cancelled before it completed 429 * @return <tt>true</tt> if task was cancelled before it completed 439 * fail if the task has already completed, already been cancelled, 440 * or could not be cancelled for some other reason. If successful, 459 * @return <tt>false</tt> if the task could not be cancelled, 477 * @throws CancellationException If the computation was cancelled. 495 * @throws CancellationException If the computation was cancelled [all...] |
/frameworks/base/core/java/android/net/http/ |
Connection.java | 80 /** set when cancelled */ 172 /* If a request was cancelled, give other cancel requests 201 /* Don't work on cancelled requests. */ 204 "processRequests(): skipping cancelled request " 249 or cancelled */ 297 or cancelled */
|