HomeSort by relevance Sort by last modified time
    Searched refs:OperationCanceledException (Results 1 - 25 of 144) sorted by null

1 2 3 4 5 6

  /frameworks/base/core/java/android/accounts/
OperationCanceledException.java 18 public class OperationCanceledException extends AccountsException {
19 public OperationCanceledException() {
22 public OperationCanceledException(String message) {
25 public OperationCanceledException(String message, Throwable cause) {
28 public OperationCanceledException(Throwable cause) {
AccountManagerFuture.java 86 * @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;
  /frameworks/base/core/java/android/os/
OperationCanceledException.java 25 public class OperationCanceledException extends RuntimeException {
26 public OperationCanceledException() {
30 public OperationCanceledException(String message) {
CancellationSignal.java 48 * Throws {@link OperationCanceledException} if the operation has been canceled.
50 * @throws OperationCanceledException if the operation has been canceled.
54 throw new OperationCanceledException();
  /frameworks/support/compat/src/main/java/androidx/core/os/
OperationCanceledException.java 23 public class OperationCanceledException extends RuntimeException {
24 public OperationCanceledException() {
28 public OperationCanceledException(String message) {
CancellationSignal.java 50 * Throws {@link OperationCanceledException} if the operation has been canceled.
52 * @throws OperationCanceledException if the operation has been canceled.
56 throw new OperationCanceledException();
  /frameworks/base/lowpan/java/android/net/lowpan/
OperationCanceledException.java 26 public class OperationCanceledException extends LowpanException {
28 public OperationCanceledException() {}
30 public OperationCanceledException(String message) {
34 public OperationCanceledException(String message, Throwable cause) {
38 protected OperationCanceledException(Exception cause) {
LowpanException.java 61 throw new OperationCanceledException(e);
  /cts/tests/tests/accounts/src/android/accounts/cts/
ExceptionTest.java 6 import android.accounts.OperationCanceledException;
64 new OperationCanceledException();
68 new OperationCanceledException(message);
72 new OperationCanceledException(cause);
76 new OperationCanceledException(message, cause);
AccountManagerTest.java 26 import android.accounts.OperationCanceledException;
161 public void tearDown() throws Exception, AuthenticatorException, OperationCanceledException {
187 throws OperationCanceledException, AuthenticatorException, IOException;
192 throws OperationCanceledException, AuthenticatorException, IOException {
318 IOException, AuthenticatorException, OperationCanceledException {
337 throws OperationCanceledException, AuthenticatorException, IOException {
348 OperationCanceledException {
360 AuthenticatorException, OperationCanceledException {
374 OperationCanceledException {
395 throws IOException, AuthenticatorException, OperationCanceledException {
    [all...]
AccountManagerUnaffiliatedAuthenticatorTests.java 23 import android.accounts.OperationCanceledException;
83 fail("Expecting a OperationCanceledException.");
191 throws IOException, AuthenticatorException, OperationCanceledException {
201 throws IOException, AuthenticatorException, OperationCanceledException {
211 throws IOException, AuthenticatorException, OperationCanceledException {
221 throws IOException, AuthenticatorException, OperationCanceledException {
231 throws IOException, AuthenticatorException, OperationCanceledException {
253 throws OperationCanceledException, AuthenticatorException, IOException {
279 OperationCanceledException, AuthenticatorException, IOException, RemoteException {
317 OperationCanceledException, AuthenticatorException, IOException, RemoteException
    [all...]
AbstractAuthenticatorTests.java 23 import android.accounts.OperationCanceledException;
75 throws OperationCanceledException, AuthenticatorException, IOException {
111 throws OperationCanceledException, AuthenticatorException, IOException {
148 throws OperationCanceledException, AuthenticatorException, IOException,
218 throws OperationCanceledException, AuthenticatorException, IOException,
295 throws OperationCanceledException, AuthenticatorException, IOException,
  /frameworks/base/test-mock/src/android/test/mock/
MockAccountManager.java 24 import android.accounts.OperationCanceledException;
79 throws OperationCanceledException, IOException, AuthenticatorException {
110 throws OperationCanceledException, IOException, AuthenticatorException {
115 throws OperationCanceledException, IOException, AuthenticatorException {
  /frameworks/support/compat/src/main/java/androidx/core/content/
ContentResolverCompat.java 26 import androidx.core.os.OperationCanceledException;
66 * If the operation is canceled, then {@link OperationCanceledException} will be thrown
84 if (e instanceof android.os.OperationCanceledException) {
85 // query() can throw a framework OperationCanceledException if it has been
87 throw new OperationCanceledException();
89 // If it's not a framework OperationCanceledException, re-throw the exception
  /cts/hostsidetests/devicepolicy/app/AccountManagement/src/com/android/cts/devicepolicy/accountmanagement/
AccountManagementTest.java 22 import android.accounts.OperationCanceledException;
60 IOException, OperationCanceledException {
67 fail("Expected OperationCanceledException is not thrown.");
68 } catch (OperationCanceledException e) {
93 IOException, OperationCanceledException {
105 fail("Expected OperationCanceledException is not thrown.");
106 } catch (OperationCanceledException e) {
AccountUtilsTest.java 23 import android.accounts.OperationCanceledException;
  /cts/hostsidetests/devicepolicy/app/DeviceAndProfileOwner/src/com/android/cts/deviceandprofileowner/
AllowedAccountManagementTest.java 22 import android.accounts.OperationCanceledException;
86 throws AuthenticatorException, IOException, OperationCanceledException {
102 throws AuthenticatorException, IOException, OperationCanceledException {
121 throws AuthenticatorException, IOException, OperationCanceledException {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/accounts/
AuthUtils.java 24 import android.accounts.OperationCanceledException;
63 final boolean notifyAuthFailure) throws OperationCanceledException,
  /frameworks/base/core/java/android/database/sqlite/
SQLiteQuery.java 21 import android.os.OperationCanceledException;
55 * @throws OperationCanceledException if the operation was canceled.
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowAccountManager.java 15 import android.accounts.OperationCanceledException;
169 throws OperationCanceledException, IOException, AuthenticatorException {
373 public Bundle doWork() throws OperationCanceledException, IOException, AuthenticatorException {
444 throws OperationCanceledException, IOException, AuthenticatorException {
467 public Bundle doWork() throws OperationCanceledException, IOException, AuthenticatorException {
485 public Boolean doWork() throws OperationCanceledException, IOException, AuthenticatorException {
503 public Account[] doWork() throws OperationCanceledException, IOException, AuthenticatorException {
556 } catch (OperationCanceledException | IOException | AuthenticatorException e) {
587 public T getResult() throws OperationCanceledException, IOException, AuthenticatorException {
590 if (exception instanceof OperationCanceledException) {
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAccountManager.java 8 import android.accounts.OperationCanceledException;
68 public Bundle getResult(long timeout, TimeUnit unit) throws OperationCanceledException,
79 public Bundle getResult() throws OperationCanceledException,
126 public Bundle getResult(long timeout, TimeUnit unit) throws OperationCanceledException,
137 public Bundle getResult() throws OperationCanceledException,
  /frameworks/base/core/java/android/print/
PrintFileDocumentAdapter.java 25 import android.os.OperationCanceledException;
122 } catch (OperationCanceledException e) {
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/task/
CopyAccountToUserTask.java 28 import android.accounts.OperationCanceledException;
121 } catch (OperationCanceledException e) {
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accounts/
AddAccountWithTypeActivity.java 23 import android.accounts.OperationCanceledException;
57 } catch (IOException|AuthenticatorException|OperationCanceledException e) {
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.concurrent_1.1.0.v20130327-1442.jar 

Completed in 482 milliseconds

1 2 3 4 5 6