Searched refs:OperationCanceledException (Results 1 - 25 of 30) sorted by relevance

12

/frameworks/base/core/java/android/accounts/
H A DOperationCanceledException.java18 public class OperationCanceledException extends AccountsException { class in inherits:AccountsException
19 public OperationCanceledException() { method in class:OperationCanceledException
22 public OperationCanceledException(String message) { method in class:OperationCanceledException
25 public OperationCanceledException(String message, Throwable cause) { method in class:OperationCanceledException
28 public OperationCanceledException(Throwable cause) { method in class:OperationCanceledException
H A DAccountManagerFuture.java86 * @throws android.accounts.OperationCanceledException if the request was canceled for any
94 V getResult() throws OperationCanceledException, IOException, AuthenticatorException;
106 * @throws android.accounts.OperationCanceledException if the request was canceled for any
114 throws OperationCanceledException, IOException, AuthenticatorException;
H A DAccountManager.java892 * <li> {@link OperationCanceledException} if the operation was canceled for
1181 * @throws OperationCanceledException if the request was canceled for any
1188 throws OperationCanceledException, IOException, AuthenticatorException {
1252 * <li> {@link OperationCanceledException} if the operation is canceled for
1336 * <li> {@link OperationCanceledException} if the operation is canceled for
1418 * <li> {@link OperationCanceledException} if the operation is canceled for
1490 * <li> {@link OperationCanceledException} if the operation was canceled for
1679 * <li> {@link OperationCanceledException} if the operation was canceled for
1756 * <li> {@link OperationCanceledException} if the operation was canceled for
1811 * <li> {@link OperationCanceledException} i
[all...]
H A DGrantCredentialsPermissionActivity.java106 } catch (OperationCanceledException e) {
H A DChooseTypeAndAccountActivity.java382 } catch (OperationCanceledException e) {
/frameworks/base/core/java/android/os/
H A DOperationCanceledException.java25 public class OperationCanceledException extends RuntimeException { class in inherits:RuntimeException
26 public OperationCanceledException() { method in class:OperationCanceledException
30 public OperationCanceledException(String message) { method in class:OperationCanceledException
H A DCancellationSignal.java48 * Throws {@link OperationCanceledException} if the operation has been canceled.
50 * @throws OperationCanceledException if the operation has been canceled.
54 throw new OperationCanceledException();
/frameworks/support/v4/java/android/support/v4/os/
H A DOperationCanceledException.java23 public class OperationCanceledException extends RuntimeException { class in inherits:RuntimeException
24 public OperationCanceledException() { method in class:OperationCanceledException
28 public OperationCanceledException(String message) { method in class:OperationCanceledException
H A DCancellationSignal.java50 * Throws {@link OperationCanceledException} if the operation has been canceled.
52 * @throws OperationCanceledException if the operation has been canceled.
56 throw new OperationCanceledException();
/frameworks/support/v4/jellybean/android/support/v4/content/
H A DContentResolverCompatJellybean.java22 import android.os.OperationCanceledException;
34 return e instanceof OperationCanceledException;
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteQuery.java21 import android.os.OperationCanceledException;
55 * @throws OperationCanceledException if the operation was canceled.
H A DSQLiteConnectionPool.java23 import android.os.OperationCanceledException;
344 * @throws OperationCanceledException if the operation was canceled.
729 waiter.mException = new OperationCanceledException();
H A DSQLiteSession.java22 import android.os.OperationCanceledException;
288 * @throws OperationCanceledException if the operation was canceled.
391 * @throws OperationCanceledException if the operation was canceled.
497 * @throws OperationCanceledException if the operation was canceled.
574 * @throws OperationCanceledException if the operation was canceled.
605 * @throws OperationCanceledException if the operation was canceled.
638 * @throws OperationCanceledException if the operation was canceled.
671 * @throws OperationCanceledException if the operation was canceled.
706 * @throws OperationCanceledException if the operation was canceled.
740 * @throws OperationCanceledException i
[all...]
H A DSQLiteQueryBuilder.java22 import android.os.OperationCanceledException;
366 * If the operation is canceled, then {@link OperationCanceledException} will be thrown
/frameworks/base/test-runner/src/android/test/
H A DIsolatedContext.java26 import android.accounts.OperationCanceledException;
145 throws OperationCanceledException, IOException, AuthenticatorException {
176 throws OperationCanceledException, IOException, AuthenticatorException {
181 throws OperationCanceledException, IOException, AuthenticatorException {
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DUriDerivativeLoader.java23 import android.os.OperationCanceledException;
42 throw new OperationCanceledException();
H A DDirectoryLoader.java36 import android.os.OperationCanceledException;
97 throw new OperationCanceledException();
/frameworks/support/v4/java/android/support/v4/content/
H A DContentResolverCompat.java24 import android.support.v4.os.OperationCanceledException;
63 // query() can throw a framework OperationCanceledException if it has been
65 throw new OperationCanceledException();
67 // If it's not a framework OperationCanceledException, re-throw the exception
117 * If the operation is canceled, then {@link OperationCanceledException} will be thrown
H A DCursorLoader.java24 import android.support.v4.os.OperationCanceledException;
54 throw new OperationCanceledException();
H A DAsyncTaskLoader.java22 import android.support.v4.os.OperationCanceledException;
57 } catch (OperationCanceledException ex) {
195 * if the task threw {@link OperationCanceledException}.
269 * {@link OperationCanceledException}. In either case, the {@link Loader} will
275 * @throws OperationCanceledException if the load is canceled during execution.
291 * @throws OperationCanceledException if the load is canceled during execution.
/frameworks/base/core/java/android/content/
H A DCursorLoader.java22 import android.os.OperationCanceledException;
59 throw new OperationCanceledException();
H A DAsyncTaskLoader.java21 import android.os.OperationCanceledException;
72 } catch (OperationCanceledException ex) {
211 * if the task threw {@link OperationCanceledException}.
285 * {@link OperationCanceledException}. In either case, the {@link Loader} will
291 * @throws OperationCanceledException if the load is canceled during execution.
307 * @throws OperationCanceledException if the load is canceled during execution.
/frameworks/base/core/java/android/app/
H A DActivityView.java31 import android.os.OperationCanceledException;
192 throw new OperationCanceledException();
207 throw new OperationCanceledException();
222 throw new OperationCanceledException();
/frameworks/base/core/java/android/provider/
H A DDocumentsContract.java37 import android.os.OperationCanceledException;
837 if (!(e instanceof OperationCanceledException)) {
/frameworks/base/core/java/android/database/
H A DDatabaseUtils.java31 import android.os.OperationCanceledException;
106 } else if (e instanceof OperationCanceledException) {
181 throw new OperationCanceledException(msg);

Completed in 462 milliseconds

12