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

  /packages/apps/Exchange/exchange2/src/com/android/exchange/
CalendarSyncAdapterService.java 133 String syncKey = mailboxCursor.getString(ID_SYNC_KEY_SYNC_KEY);
134 if ((syncKey == null) || (syncKey.equals("0"))) {
EasAccountService.java 231 userLog("Account syncKey INIT to 0");
322 userLog("Sending Account syncKey: ", mAccount.mSyncKey);
576 // 2) The syncKey isn't "0" (i.e. it's synced at least once)
602 String syncKey = c.getString(Mailbox.CONTENT_SYNC_KEY_COLUMN);
603 if ((syncKey == null) || syncKey.equals("0")) {
    [all...]
EasSyncService.java 471 String syncKey = "0";
475 syncKey = existingAccount.mSyncKey;
478 s.start(Tags.FOLDER_FOLDER_SYNC).start(Tags.FOLDER_SYNC_KEY).text(syncKey)
    [all...]
ExchangeService.java     [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
CalendarSyncAdapter.java 263 * We get our SyncKey from CalendarProvider. If there's not one, we set it to "0" (the reset
277 // Initialize the SyncKey
281 String syncKey = new String(data);
282 userLog("SyncKey retrieved as ", syncKey, " from CalendarProvider");
283 return syncKey;
286 throw new IOException("Can't get SyncKey from CalendarProvider");
292 * We only need to set this when we're forced to make the SyncKey "0" (a reset). In all other
293 * cases, the SyncKey is set within Calendar
296 public void setSyncKey(String syncKey, boolean inCommands) throws IOException
    [all...]

Completed in 212 milliseconds