Lines Matching refs:exchangeService
60 * The ExchangeService handles all aspects of starting, maintaining, and stopping the various sync
65 * The Email application communicates with EAS sync adapters via ExchangeService's binder interface,
68 * ExchangeService uses ContentObservers to detect changes to accounts, mailboxes, and messages in
72 public class ExchangeService extends SyncManager {
121 hostAuth, ExchangeService.this);
131 return new EasSyncService().tryAutodiscover(ExchangeService.this, hostAuth);
137 Attachment att = Attachment.restoreAttachmentWithId(ExchangeService.this, attachmentId);
144 reloadFolderList(ExchangeService.this, accountId, false);
168 // ExchangeService is deprecated so I am deleting rather than fixing this function.
173 SyncManager exchangeService = INSTANCE;
174 if (exchangeService == null) return 0;
175 EasSearch op = new EasSearch(exchangeService, accountId, searchParams, destMailboxId);
258 ExchangeService exchangeService = (ExchangeService)INSTANCE;
259 if (exchangeService == null) return;
260 ContentResolver resolver = exchangeService.mResolver;
261 for (CalendarObserver observer: exchangeService.mCalendarObservers.values()) {
264 exchangeService.mCalendarObservers.clear();
444 SyncManager exchangeService = INSTANCE;
445 if (exchangeService == null) return;
477 AbstractSyncService svc = exchangeService.mServiceMap.get(id);
490 exchangeService.releaseMailbox(id);
502 * Informs ExchangeService that an account has a new folder list; as a result, any existing
509 SyncManager exchangeService = INSTANCE;
510 if (exchangeService != null) {
511 exchangeService.stopAccountSyncs(acctId, false);
517 * Start up the ExchangeService service if it's not already running
518 * This is a stopgap for cases in which ExchangeService died (due to a crash somewhere in
522 SyncManager exchangeService = INSTANCE;
523 if (exchangeService == null) return;
526 exchangeService.startService(new Intent(exchangeService, ExchangeService.class));