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

1 2 3 4

  /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 89 * @throws android.accounts.OperationCanceledException if the request was canceled for any
96 V getResult() throws OperationCanceledException, IOException, AuthenticatorException;
108 * @throws android.accounts.OperationCanceledException if the request was canceled for any
116 throws OperationCanceledException, IOException, AuthenticatorException;
AccountManager.java     [all...]
  /frameworks/base/core/java/android/os/
OperationCanceledException.java 25 public class OperationCanceledException extends RuntimeException {
26 public OperationCanceledException() {
30 public OperationCanceledException(String message) {
CancellationSignal.java 49 * Throws {@link OperationCanceledException} if the operation has been canceled.
51 * @throws OperationCanceledException if the operation has been canceled.
55 throw new OperationCanceledException();
  /cts/tests/tests/accounts/src/android/accounts/cts/
AccountManagerTest.java 26 import android.accounts.OperationCanceledException;
111 public void tearDown() throws Exception, AuthenticatorException, OperationCanceledException {
181 IOException, AuthenticatorException, OperationCanceledException {
201 OperationCanceledException {
217 throws IOException, AuthenticatorException, OperationCanceledException {
263 OperationCanceledException {
291 AuthenticatorException, OperationCanceledException {
298 AuthenticatorException, OperationCanceledException {
307 } catch (OperationCanceledException e) {
308 fail("should not throw an OperationCanceledException");
    [all...]
  /packages/apps/Email/src/com/android/email/service/
PopImapSyncAdapterService.java 20 import android.accounts.OperationCanceledException;
61 } catch (OperationCanceledException e) {
86 throws OperationCanceledException {
  /packages/apps/Exchange/exchange2/src/com/android/exchange/
EmailSyncAdapterService.java 25 import android.accounts.OperationCanceledException;
65 } catch (OperationCanceledException e) {
91 throws OperationCanceledException {
CalendarSyncAdapterService.java 20 import android.accounts.OperationCanceledException;
71 } catch (OperationCanceledException e) {
99 throws OperationCanceledException {
ContactsSyncAdapterService.java 24 import android.accounts.OperationCanceledException;
67 } catch (OperationCanceledException e) {
104 throws 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;
147 throws OperationCanceledException, IOException, AuthenticatorException {
178 throws OperationCanceledException, IOException, AuthenticatorException {
183 throws OperationCanceledException, IOException, AuthenticatorException {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/core/
AndroidRenameParticipant.java 27 import org.eclipse.core.runtime.OperationCanceledException;
57 throws OperationCanceledException {
  /packages/apps/Contacts/src/com/android/contacts/util/
AccountPromptUtils.java 27 import android.accounts.OperationCanceledException;
118 } catch (OperationCanceledException ignore) {
  /packages/apps/Email/src/com/android/email/provider/
AccountReconciler.java 22 import android.accounts.OperationCanceledException;
155 } catch (OperationCanceledException e) {
  /packages/apps/Settings/src/com/android/settings/accounts/
AddAccountSettings.java 23 import android.accounts.OperationCanceledException;
80 } catch (OperationCanceledException e) {
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/syncadapter/
SyncAdapter.java 30 import android.accounts.OperationCanceledException;
145 } catch (final OperationCanceledException e) {
  /frameworks/base/core/java/android/content/
CursorLoader.java 23 import android.os.OperationCanceledException;
60 throw new OperationCanceledException();
AsyncTaskLoader.java 21 import android.os.OperationCanceledException;
71 } catch (OperationCanceledException ex) {
202 * if the task threw {@link OperationCanceledException}.
274 * {@link OperationCanceledException}. In either case, the {@link Loader} will
280 * @throws OperationCanceledException if the load is canceled during execution.
296 * @throws OperationCanceledException if the load is canceled during execution.
  /packages/apps/Email/tests/src/com/android/email/
AccountTestCase.java 22 import android.accounts.OperationCanceledException;
89 } catch (OperationCanceledException e) {
  /cts/tests/tests/content/src/android/content/cts/
ContentResolverSyncTestCase.java 24 import android.accounts.OperationCanceledException;
81 OperationCanceledException {
161 OperationCanceledException {
193 OperationCanceledException {
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteQueryBuilderTest.java 28 import android.os.OperationCanceledException;
299 fail("Expected OperationCanceledException");
300 } catch (OperationCanceledException ex) {
319 fail("Expected OperationCanceledException");
320 } catch (OperationCanceledException ex) {
372 fail("Expected OperationCanceledException");
373 } catch (OperationCanceledException ex) {
434 fail("Expected OperationCanceledException");
435 } catch (OperationCanceledException ex) {
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
ScenarioData.java 26 import org.eclipse.core.runtime.OperationCanceledException;
174 if (subMonitor.isCanceled()) throw new OperationCanceledException();
202 if (subMonitor.isCanceled()) throw new OperationCanceledException();
271 if (subMonitor.isCanceled()) throw new OperationCanceledException();
305 if (subMonitor.isCanceled()) throw new OperationCanceledException();
320 if (subMonitor.isCanceled()) throw new OperationCanceledException();
  /frameworks/base/policy/src/com/android/internal/policy/impl/
AccountUnlockScreen.java 24 import android.accounts.OperationCanceledException;
288 } catch (OperationCanceledException e) {
  /packages/apps/Exchange/exchange2/tests/src/com/android/exchange/
CalendarSyncEnablerTest.java 23 import android.accounts.OperationCanceledException;
255 } catch (OperationCanceledException e) {

Completed in 1999 milliseconds

1 2 3 4