HomeSort by relevance Sort by last modified time
    Searched refs:syncKey (Results 1 - 8 of 8) sorted by null

  /packages/apps/Exchange/src/com/android/exchange/eas/
EasSyncBase.java 85 final String syncKey = getSyncKey();
86 LogUtils.d(TAG, "Syncing account %d mailbox %d (class %s) with syncKey %s", mAccount.mId,
87 mMailbox.mId, className, syncKey);
88 mInitialSync = EmailContent.isInitialSyncKey(syncKey);
97 s.data(Tags.SYNC_SYNC_KEY, syncKey);
EasFolderSync.java 191 final String syncKey = mAccount.mSyncKey != null ? mAccount.mSyncKey : "0";
193 s.start(Tags.FOLDER_FOLDER_SYNC).start(Tags.FOLDER_SYNC_KEY).text(syncKey)
  /packages/apps/Exchange/src/com/android/exchange/adapter/
AbstractSyncAdapter.java 98 * Returns the current SyncKey; override if the SyncKey is stored elsewhere (as for Contacts)
99 * @return the current SyncKey for the Mailbox
104 userLog("Reset SyncKey to 0");
110 public void setSyncKey(String syncKey, boolean inCommands) throws IOException {
111 mMailbox.mSyncKey = syncKey;
EmailSyncAdapter.java 407 String syncKey = getSyncKey();
408 userLog("gie, sending ", className, " syncKey: ", syncKey);
416 s.data(Tags.SYNC_SYNC_KEY, syncKey);
420 s.data(Tags.SYNC_SYNC_KEY, syncKey);
425 s.data(Tags.SYNC_SYNC_KEY, syncKey);
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/
EasAccountService.java 227 userLog("Account syncKey INIT to 0");
323 userLog("Sending Account syncKey: ", mAccount.mSyncKey);
546 // 2) The syncKey isn't "0" (i.e. it's synced at least once)
572 String syncKey = c.getString(Mailbox.CONTENT_SYNC_KEY_COLUMN);
573 if ((syncKey == null) || syncKey.equals("0")) {
    [all...]
ExchangeService.java 317 log("Deleting events and setting syncKey to 0 for " +
321 // Set the syncKey to 0 (reset)
421 * devices (e.g. the syncKey is specific to a device) If we're on an emulator or some other
461 String syncKey = acct.mSyncKey;
463 if (!force && (syncKey == null || syncKey.equals("0"))) {
EasSyncService.java 231 // if ("0".equals(syncKey) || !inCommands) {
239 // syncKey.getBytes());
240 // userLog("SyncKey set to ", syncKey, " in CalendarProvider");
242 // throw new IOException("Can't set SyncKey in CalendarProvider");
245 // mMailbox.mSyncKey = syncKey;
497 String syncKey = "0";
501 syncKey = existingAccount.mSyncKey;
504 s.start(Tags.FOLDER_FOLDER_SYNC).start(Tags.FOLDER_SYNC_KEY).text(syncKey)
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
EmailContent.java 172 public static boolean isInitialSyncKey(final String syncKey) {
173 return syncKey == null || syncKey.isEmpty() || syncKey.equals("0");
    [all...]

Completed in 232 milliseconds