HomeSort by relevance Sort by last modified time
    Searched full:canceled (Results 1 - 25 of 1214) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/nist-sip/java/gov/nist/javax/sip/
ServerTransactionExt.java 8 * Return the canceled Invite transaction corresponding to an
11 * @return -- the canceled Invite transaction.
  /external/jmdns/src/javax/jmdns/impl/constants/
DNSState.java 53 CANCELED("canceled", StateClass.canceled),
64 probing, announcing, announced, canceling, canceled, closing, closed enum constant in enum:DNSState.StateClass
86 * or CANCELING_1, CANCELING_2, CANCELING_3, CANCELED Does not advance for ANNOUNCED and CANCELED state.
109 return CANCELED;
110 case CANCELED:
111 return CANCELED;
123 * Returns to the next reverted state. All states except CANCELED revert to PROBING_1. Status CANCELED does not revert
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RenameResult.java 46 * Creates a new {@linkplain RenameResult} for a user canceled renaming operation
47 * @return a canceled operation
50 public static RenameResult canceled() { method in class:RenameResult
79 * Marks this result as canceled
81 * @param canceled whether the result was canceled
85 public RenameResult setCanceled(boolean canceled) {
86 mCanceled = canceled;
127 * Returns whether this result represents a canceled renaming operation
129 * @return true if the operation was canceled
    [all...]
  /frameworks/base/core/java/android/os/
CancellationSignal.java 31 * Creates a cancellation signal, initially not canceled.
37 * Returns true if the operation has been canceled.
39 * @return True if the operation has been canceled.
48 * Throws {@link OperationCanceledException} if the operation has been canceled.
50 * @throws OperationCanceledException if the operation has been canceled.
60 * If the operation has not yet started, then it will be canceled as soon as it does.
94 * Sets the cancellation listener to be called when canceled.
128 * remote transport is canceled immediately.
OperationCanceledException.java 21 * An exception type that is thrown when an operation in progress is canceled.
31 super(message != null ? message : "The operation has been canceled.");
  /frameworks/support/compat/java/android/support/v4/os/
OperationCanceledException.java 21 * An exception type that is thrown when an operation in progress is canceled.
29 super(message != null ? message : "The operation has been canceled.");
CancellationSignal.java 33 * Creates a cancellation signal, initially not canceled.
39 * Returns true if the operation has been canceled.
41 * @return True if the operation has been canceled.
50 * Throws {@link OperationCanceledException} if the operation has been canceled.
52 * @throws OperationCanceledException if the operation has been canceled.
62 * If the operation has not yet started, then it will be canceled as soon as it does.
93 * Sets the cancellation listener to be called when canceled.
  /external/opencv3/modules/java/generator/src/java/
android+InstallCallbackInterface.java 27 * Installation is canceled.
android+LoaderCallbackInterface.java 17 * OpenCV library installation has been canceled by the user.
  /external/tpm2/
SelfTest.c 14 // TPM_RC_CANCELED the command was canceled (some incremental process may have
IncrementalSelfTest.c 14 // TPM_RC_CANCELED the command was canceled (some tests may have completed)
PlatformData.h 14 // From Cancel.c Cancel flag. It is initialized as FALSE, which indicate the command is not being canceled
CryptSelfTest.c 47 // can take a long time, the TPM will check after each test to see if the command is canceled. If so, then the
53 // TPM_RC_CANCELED if the command is canceled
80 // This command may be canceled. If it is, then there is no return result. However, this command can be run
85 // TPM_RC_CANCELED processing of this command was canceled
161 // TPM_RC_CANCELED test was canceled
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Call.java 31 * canceled. As this object represents a single request/response pair (stream),
39 volatile boolean canceled; field in class:Call
80 if (result == null) throw new IOException("Canceled");
118 * cannot be canceled.
121 canceled = true;
126 return canceled;
163 if (canceled) {
165 responseCallback.onFailure(originalRequest, new IOException("Canceled"));
188 String string = canceled ? "canceled call" : "call"
    [all...]
  /frameworks/base/core/java/android/service/notification/
NotificationRankerService.java 54 /** Notification was canceled by the status bar reporting a click. */
57 /** Notification was canceled by the status bar reporting a user dismissal. */
60 /** Notification was canceled by the status bar reporting a user dismiss all. */
63 /** Notification was canceled by the status bar reporting an inflation error. */
66 /** Notification was canceled by the package manager modifying the package. */
69 /** Notification was canceled by the owning user context being stopped. */
72 /** Notification was canceled by the user banning the package. */
75 /** Notification was canceled by the app canceling this specific notification. */
78 /** Notification was canceled by the app cancelling all its notifications. */
81 /** Notification was canceled by a listener reporting a user dismissal. *
    [all...]
  /development/samples/browseable/ActiveNotifications/
_index.jd 14 added. When a notification is being canceled, the count gets updated
  /libcore/ojluni/src/main/java/java/util/stream/
AbstractShortCircuitTask.java 53 * Indicates whether this task has been canceled. Tasks may cancel other
58 protected volatile boolean canceled; field in class:AbstractShortCircuitTask
194 * Mark this task as canceled
197 canceled = true;
201 * Queries whether this task is canceled. A task is considered canceled if
202 * it or any of its parents have been canceled.
204 * @return {@code true} if this task or any parent is canceled.
207 boolean cancel = canceled;
210 cancel = parent.canceled;
    [all...]
  /frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
StartVoiceInteractionActivity.java 122 Log.i(TAG, "Canceled!");
123 ((StartVoiceInteractionActivity)getActivity()).mLog.append("Canceled abort\n");
138 Log.i(TAG, "Canceled!");
139 ((StartVoiceInteractionActivity)getActivity()).mLog.append("Canceled complete\n");
154 Log.i(TAG, "Canceled!");
155 ((StartVoiceInteractionActivity)getActivity()).mLog.append("Canceled command\n");
185 Log.i(TAG, "Canceled!");
186 ((StartVoiceInteractionActivity)getActivity()).mLog.append("Canceled pick\n");
TestInteractionActivity.java 98 Log.i(TAG, "Canceled!");
176 Log.i(TAG, "Canceled!");
177 ((TestInteractionActivity)getActivity()).mLog.append("Canceled abort\n");
191 Log.i(TAG, "Canceled!");
192 ((TestInteractionActivity)getActivity()).mLog.append("Canceled complete\n");
207 Log.i(TAG, "Canceled!");
208 ((TestInteractionActivity)getActivity()).mLog.append("Canceled command\n");
238 Log.i(TAG, "Canceled!");
239 ((TestInteractionActivity)getActivity()).mLog.append("Canceled pick\n");
  /frameworks/base/core/java/android/content/
AsyncTaskLoader.java 74 // onLoadInBackground threw a canceled exception spuriously.
78 // reflect the fact that the task was being canceled.
82 if (DEBUG) Log.v(TAG, this + " <<< doInBackground (was canceled)", ex);
175 // one being canceled; just drop it.
207 * Called if the task was canceled before it was completed. Gives the class a chance
242 if (DEBUG) Log.v(TAG, "Cancelled task is now canceled!");
284 * When the load is canceled, this method may either return normally or throw
291 * @throws OperationCanceledException if the load is canceled during execution.
307 * @throws OperationCanceledException if the load is canceled during execution.
330 * Returns true if the current invocation of {@link #loadInBackground} is being canceled
    [all...]
  /frameworks/support/core-utils/java/android/support/v4/content/
AsyncTaskLoader.java 62 // onLoadInBackground threw a canceled exception spuriously.
66 // reflect the fact that the task was being canceled.
70 if (DEBUG) Log.v(TAG, this + " <<< doInBackground (was canceled)", ex);
162 // one being canceled; just drop it.
194 * Called if the task was canceled before it was completed. Gives the class a chance
229 if (DEBUG) Log.v(TAG, "Cancelled task is now canceled!");
271 * When the load is canceled, this method may either return normally or throw
278 * @throws OperationCanceledException if the load is canceled during execution.
294 * @throws OperationCanceledException if the load is canceled during execution.
317 * Returns true if the current invocation of {@link #loadInBackground} is being canceled
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
Ping.java 52 * canceled.
61 * response was canceled, or -2 if the timeout elapsed before the round
  /external/protobuf/java/src/main/java/com/google/protobuf/
RpcController.java 79 * canceled. The RPC system may cancel it immediately, may wait awhile and
81 * canceled, the "done" callback will still be called and the RpcController
100 * If {@code true}, indicates that the client canceled the RPC, so the server
107 * Asks that the given callback be called when the RPC is canceled. The
110 * being canceled, the callback will be called after completion. If the RPC
111 * has already been canceled when NotifyOnCancel() is called, the callback
  /frameworks/base/core/java/android/accounts/
AccountManagerFuture.java 83 * If the request that generated this result fails or is canceled then an exception
86 * @throws android.accounts.OperationCanceledException if the request was canceled for any
100 * If the request that generated this result fails or is canceled then an exception
102 * the request will automatically be canceled if it does not complete in that amount of time.
106 * @throws android.accounts.OperationCanceledException if the request was canceled for any
  /frameworks/support/design/tests/src/android/support/design/widget/
BottomSheetDialogTest.java 150 final AtomicBoolean canceled = new AtomicBoolean(false); local
158 canceled.set(true);
165 // The dialog should be canceled
167 while (!canceled.get()) {
170 fail("Timed out while waiting for the dialog to be canceled.");

Completed in 2188 milliseconds

1 2 3 4 5 6 7 8 91011>>