HomeSort by relevance Sort by last modified time
    Searched refs:OperationCanceledException (Results 1 - 25 of 138) 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/v4/java/android/support/v4/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();
  /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;
136 public void tearDown() throws Exception, AuthenticatorException, OperationCanceledException {
162 throws OperationCanceledException, AuthenticatorException, IOException;
167 throws OperationCanceledException, AuthenticatorException, IOException {
293 IOException, AuthenticatorException, OperationCanceledException {
312 throws OperationCanceledException, AuthenticatorException, IOException {
323 OperationCanceledException {
335 AuthenticatorException, OperationCanceledException {
349 OperationCanceledException {
370 throws IOException, AuthenticatorException, OperationCanceledException {
    [all...]
AccountManagerUnaffiliatedAuthenticatorTests.java 23 import android.accounts.OperationCanceledException;
89 fail("Expecting a OperationCanceledException.");
209 throws OperationCanceledException, AuthenticatorException, IOException {
  /frameworks/support/v4/jellybean/android/support/v4/content/
ContentResolverCompatJellybean.java 22 import android.os.OperationCanceledException;
34 return e instanceof OperationCanceledException;
  /cts/hostsidetests/devicepolicy/app/AccountManagement/src/com/android/cts/devicepolicy/accountmanagement/
AccountManagementTest.java 23 import android.accounts.OperationCanceledException;
61 IOException, OperationCanceledException {
68 fail("Expected OperationCanceledException is not thrown.");
69 } catch (OperationCanceledException e) {
88 IOException, OperationCanceledException {
100 fail("Expected OperationCanceledException is not thrown.");
101 } catch (OperationCanceledException e) {
AccountUtilsTest.java 23 import android.accounts.OperationCanceledException;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/accounts/
AuthUtils.java 24 import android.accounts.OperationCanceledException;
63 final boolean notifyAuthFailure) throws OperationCanceledException,
  /cts/hostsidetests/devicepolicy/app/DeviceAndProfileOwner/src/com/android/cts/deviceandprofileowner/
DpcAllowedAccountManagementTest.java 23 import android.accounts.OperationCanceledException;
91 throws AuthenticatorException, IOException, OperationCanceledException {
107 throws AuthenticatorException, IOException, OperationCanceledException {
  /frameworks/base/core/java/android/database/sqlite/
SQLiteQuery.java 21 import android.os.OperationCanceledException;
55 * @throws OperationCanceledException if the operation was canceled.
  /frameworks/base/test-runner/src/android/test/
IsolatedContext.java 26 import android.accounts.OperationCanceledException;
149 throws OperationCanceledException, IOException, AuthenticatorException {
180 throws OperationCanceledException, IOException, AuthenticatorException {
185 throws OperationCanceledException, IOException, AuthenticatorException {
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
UriDerivativeLoader.java 23 import android.os.OperationCanceledException;
42 throw new OperationCanceledException();
  /frameworks/support/v4/java/android/support/v4/content/
ContentResolverCompat.java 24 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
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accounts/
AddAccountWithTypeActivity.java 26 import android.accounts.OperationCanceledException;
55 } catch (IOException|AuthenticatorException|OperationCanceledException e) {
  /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,
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.concurrent_1.1.0.v20130327-1442.jar 
  /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 
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/syncadapter/
SyncAdapter.java 30 import android.accounts.OperationCanceledException;
133 } catch (final OperationCanceledException e) {
  /frameworks/base/core/java/android/content/
CursorLoader.java 22 import android.os.OperationCanceledException;
59 throw new OperationCanceledException();
  /frameworks/base/packages/MtpDocumentsProvider/tests/src/com/android/mtp/
MtpManagerTest.java 26 import android.os.OperationCanceledException;
71 } catch (OperationCanceledException exception) {

Completed in 2228 milliseconds

1 2 3 4 5 6