/packages/apps/Exchange/exchange2/src/com/android/exchange/ |
MailboxAlarmReceiver.java | 25 * MailboxAlarmReceiver is used to "wake up" the ExchangeService at the appropriate time(s). It may 32 long mailboxId = intent.getLongExtra("mailbox", ExchangeService.EXTRA_MAILBOX_ID); 34 if (mailboxId == ExchangeService.EXCHANGE_SERVICE_MAILBOX_ID) { 35 context.startService(new Intent(context, ExchangeService.class)); 37 ExchangeService.alert(context, mailboxId);
|
EmailSyncAlarmReceiver.java | 48 * If EmailProvider isn't available, the upsyncs will happen the next time ExchangeService starts 69 String selector = ExchangeService.getEasAccountSelector(); 108 ExchangeService.serviceRequest(mailboxId, ExchangeService.SYNC_UPSYNC);
|
EasAccountService.java | 149 mDeviceId = ExchangeService.getDeviceId(mContext); 167 ExchangeService.done(this); 174 ExchangeService.reloadFolderList(mContext, mAccount.mId, true); 184 // Make sure ExchangeService knows about this 185 ExchangeService.kick("sync finished"); 223 ExchangeService.callback() 248 ExchangeService.kick("change ping boxes to push"); 305 ExchangeService.WHERE_IN_ACCOUNT_AND_PUSHABLE, 313 if (!ExchangeService.canAutoSync(mAccount)) { 314 if (ExchangeService.onSecurityHold(mAccount)) [all...] |
ExchangeService.java | 95 * The ExchangeService handles all aspects of starting, maintaining, and stopping the various sync 100 * The Email application communicates with EAS sync adapters via ExchangeService's binder interface, 103 * ExchangeService uses ContentObservers to detect changes to accounts, mailboxes, and messages in 107 public class ExchangeService extends Service implements Runnable { 109 private static final String TAG = "ExchangeService"; 111 // The ExchangeService's mailbox "id" 125 // Reason codes when ExchangeService.kick is called (mainly for debugging) 136 // A part request (attachment load, for now) was sent to ExchangeService 141 // startSync was requested of ExchangeService (other than due to user request) 143 // startSync was requested of ExchangeService (due to user request [all...] |
EmailSyncAdapterService.java | 86 * Partial integration with system SyncManager; we tell our EAS ExchangeService to start an 110 ExchangeService.serviceRequest(mailboxCursor.getLong(0), 111 ExchangeService.SYNC_KICK);
|
EasSyncService.java | 392 svc.mDeviceId = ExchangeService.getDeviceId(context); 443 mDeviceId = ExchangeService.getDeviceId(context); [all...] |
CalendarSyncAdapterService.java | 92 * Partial integration with system SyncManager; we tell our EAS ExchangeService to start a 141 ExchangeService.serviceRequest(mailboxCursor.getLong( 142 ID_SYNC_KEY_MAILBOX_ID), ExchangeService.SYNC_UPSYNC);
|
ContactsSyncAdapterService.java | 97 * Partial integration with system SyncManager; we tell our EAS ExchangeService to start a 143 ExchangeService.serviceRequest(mailboxCursor.getLong(0), 144 ExchangeService.SYNC_UPSYNC);
|
EasOutboxService.java | 243 ExchangeService.callback().sendMessageStatus(msgId, subject, status, 0); 319 * IOException, which is handled by ExchangeService with retries, backoffs, etc. 484 mDeviceId = ExchangeService.getDeviceId(mContext); 525 ExchangeService.done(this);
|
/packages/apps/Exchange/exchange2/tests/src/com/android/exchange/ |
ExchangeServiceAccountTests.java | 24 import com.android.exchange.ExchangeService.SyncError; 42 ExchangeService exchangeService = new ExchangeService(); 44 exchangeService.new SyncError(AbstractSyncService.EXIT_SECURITY_FAILURE, false); 46 exchangeService.new SyncError(AbstractSyncService.EXIT_IO_ERROR, false); 48 exchangeService.new SyncError(AbstractSyncService.EXIT_SECURITY_FAILURE, false); 61 ConcurrentHashMap<Long, SyncError> errorMap = exchangeService.mSyncErrorMap; 70 assertTrue(exchangeService.releaseSyncHolds(mProviderContext, 84 assertTrue(exchangeService.releaseSyncHolds(mProviderContext [all...] |
ExchangeServiceTest.java | 44 final String id = ExchangeService.getDeviceId(context); 53 final String cachedId = ExchangeService.getDeviceId(context);
|
/packages/apps/Exchange/tests/src/com/android/exchange/ |
ExchangeServiceAccountTests.java | 24 import com.android.exchange.ExchangeService.SyncError; 42 ExchangeService exchangeService = new ExchangeService(); 44 exchangeService.new SyncError(AbstractSyncService.EXIT_SECURITY_FAILURE, false); 46 exchangeService.new SyncError(AbstractSyncService.EXIT_IO_ERROR, false); 48 exchangeService.new SyncError(AbstractSyncService.EXIT_SECURITY_FAILURE, false); 61 ConcurrentHashMap<Long, SyncError> errorMap = exchangeService.mSyncErrorMap; 70 assertTrue(exchangeService.releaseSyncHolds(mProviderContext, 84 assertTrue(exchangeService.releaseSyncHolds(mProviderContext [all...] |
ExchangeServiceTest.java | 44 final String id = ExchangeService.getDeviceId(context); 53 final String cachedId = ExchangeService.getDeviceId(context);
|
/packages/apps/Exchange/exchange2/src/com/android/exchange/service/ |
ExchangeBroadcastProcessorService.java | 27 import com.android.exchange.ExchangeService; 74 ExchangeService.runAccountReconcilerSync(this); 83 startService(new Intent(this, ExchangeService.class));
|
/packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/ |
AbstractSyncParser.java | 30 import com.android.exchange.ExchangeService; 154 ExchangeService.reloadFolderList(mContext, mAccount.mId, true); 227 ExchangeService.stopAccountSyncs(mAccount.mId);
|
AttachmentLoader.java | 32 import com.android.exchange.ExchangeService; 77 ExchangeService.callback().loadAttachmentStatus(mMessageId, mAttachmentId, status, 0); 85 ExchangeService.callback().loadAttachmentStatus(mMessageId, mAttachmentId,
|
Search.java | 37 import com.android.exchange.ExchangeService; 138 ExchangeService.callback().syncMailboxStatus(destMailboxId,
|
FolderSyncParser.java | 39 import com.android.exchange.ExchangeService; 173 ExchangeService.deleteAccountPIMData(mAccountId); 180 ExchangeService.stopNonAccountMailboxSyncsForAccount(mAccountId); 369 // TYPE_OUTBOX mailboxes are known by ExchangeService to sync whenever they
|
CalendarSyncAdapter.java | 56 import com.android.exchange.ExchangeService; 222 ExchangeService.unregisterCalendarObservers(); [all...] |
/packages/apps/Exchange/exchange2/src/com/android/exchange/utility/ |
CalendarUtilities.java | 51 import com.android.exchange.ExchangeService; 389 ExchangeService.log(TAG, "TZI string for " + tz.getDisplayName() + [all...] |