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/service/
EasSyncHandler.java 61 * - The very first time, the client sends a Sync request with SyncKey = 0 and no other parameters.
62 * This initial Sync request simply gets us a real SyncKey.
66 * - For each collection, we send SyncKey, ServerId, other modifiers, Options, and Commands. The
259 * @param syncKey The sync key to use for this request.
266 final String syncKey, final boolean initialSync, int numWindows) throws IOException {
268 LogUtils.d(TAG, "Syncing account %d mailbox %d (class %s) with syncKey %s", mAccount.mId,
269 mMailbox.mId, className, syncKey);
280 s.data(Tags.SYNC_SYNC_KEY, syncKey);
333 final String syncKey = getSyncKey();
334 if (syncKey == null)
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/eas/
EasFolderSync.java 149 final String syncKey = mAccount.mSyncKey != null ? mAccount.mSyncKey : "0";
151 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 441 log("Deleting events and setting syncKey to 0 for " +
445 // Set the syncKey to 0 (reset)
545 * devices (e.g. the syncKey is specific to a device) If we're on an emulator or some other
585 String syncKey = acct.mSyncKey;
587 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 229 milliseconds