Home
last modified time | relevance | path

Searched refs:LastSyncResult (Results 1 – 8 of 8) sorted by relevance

/packages/apps/UnifiedEmail/tests/src/com/android/mail/providers/
DUIProviderTest.java24 UIProvider.LastSyncResult.STORAGE_ERROR); in testReadAndWriteOfLastSyncResult()
26 UIProvider.LastSyncResult.SECURITY_ERROR); in testReadAndWriteOfLastSyncResult()
28 UIProvider.LastSyncResult.SUCCESS); in testReadAndWriteOfLastSyncResult()
30 UIProvider.LastSyncResult.AUTH_ERROR); in testReadAndWriteOfLastSyncResult()
32 UIProvider.LastSyncResult.SUCCESS); in testReadAndWriteOfLastSyncResult()
34 UIProvider.LastSyncResult.CONNECTION_ERROR); in testReadAndWriteOfLastSyncResult()
/packages/apps/Exchange/src/com/android/exchange/eas/
DEasOperation.java727 return UIProvider.LastSyncResult.INTERNAL_ERROR; in translateSyncResultToUiResult()
729 return UIProvider.LastSyncResult.CONNECTION_ERROR; in translateSyncResultToUiResult()
734 return UIProvider.LastSyncResult.AUTH_ERROR; in translateSyncResultToUiResult()
740 return UIProvider.LastSyncResult.INTERNAL_ERROR; in translateSyncResultToUiResult()
742 return UIProvider.LastSyncResult.INTERNAL_ERROR; in translateSyncResultToUiResult()
744 return UIProvider.LastSyncResult.SUCCESS; in translateSyncResultToUiResult()
DEasFullSyncOperation.java257 UIProvider.LastSyncResult.SUCCESS); in syncMailbox()
/packages/apps/Email/provider_src/com/android/email/provider/
DRefreshStatusMonitor.java114 mMailboxId, UIProvider.LastSyncResult.STORAGE_ERROR); in run()
121 mMailboxId, UIProvider.LastSyncResult.CONNECTION_ERROR); in run()
148 mMailboxId, UIProvider.LastSyncResult.SUCCESS); in run()
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
DEmailContent.java102 public static final int LAST_SYNC_RESULT_SUCCESS = UIProvider.LastSyncResult.SUCCESS;
103 public static final int LAST_SYNC_RESULT_AUTH_ERROR = UIProvider.LastSyncResult.AUTH_ERROR;
104 public static final int LAST_SYNC_RESULT_SERVER_ERROR = UIProvider.LastSyncResult.SERVER_ERROR;
106 UIProvider.LastSyncResult.SECURITY_ERROR;
108 UIProvider.LastSyncResult.CONNECTION_ERROR;
110 UIProvider.LastSyncResult.INTERNAL_ERROR;
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
DAbstractActivityController.java3984 case UIProvider.LastSyncResult.CONNECTION_ERROR:
4002 case UIProvider.LastSyncResult.AUTH_ERROR:
4006 case UIProvider.LastSyncResult.SECURITY_ERROR:
4008 case UIProvider.LastSyncResult.STORAGE_ERROR:
4012 case UIProvider.LastSyncResult.INTERNAL_ERROR:
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
DFolder.java859 return ((lastSyncResult & 0x0f) == UIProvider.LastSyncResult.SUCCESS); in wasSyncSuccessful()
DUIProvider.java93 public static final class LastSyncResult { class in UIProvider