Home
last modified time | relevance | path

Searched refs:syncKey (Results 1 – 8 of 8) sorted by relevance

/packages/apps/Exchange/exchange2/src/com/android/exchange/
DCalendarSyncAdapterService.java133 String syncKey = mailboxCursor.getString(ID_SYNC_KEY_SYNC_KEY); in performSync() local
134 if ((syncKey == null) || (syncKey.equals("0"))) { in performSync()
DEasSyncService.java471 String syncKey = "0"; in validateAccount() local
475 syncKey = existingAccount.mSyncKey; in validateAccount()
478 s.start(Tags.FOLDER_FOLDER_SYNC).start(Tags.FOLDER_SYNC_KEY).text(syncKey) in validateAccount()
1653 String syncKey = target.getSyncKey(); in sync() local
1654 userLog("sync, sending ", className, " syncKey: ", syncKey); in sync()
1662 s.data(Tags.SYNC_SYNC_KEY, syncKey) in sync()
1667 boolean initialSync = syncKey.equals("0"); in sync()
1884 String syncKey = target.getSyncKey(); in run() local
1886 "0".equals(syncKey)) { in run()
DEasAccountService.java594 String syncKey = c.getString(Mailbox.CONTENT_SYNC_KEY_COLUMN); in runPingLoop() local
595 if ((syncKey == null) || syncKey.equals("0")) { in runPingLoop()
DExchangeService.java1365 String syncKey = acct.mSyncKey; in reloadFolderList() local
1367 if (!force && (syncKey == null || syncKey.equals("0"))) { in reloadFolderList()
/packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
DAbstractSyncAdapter.java146 public void setSyncKey(String syncKey, boolean inCommands) throws IOException { in setSyncKey() argument
147 mMailbox.mSyncKey = syncKey; in setSyncKey()
DCalendarSyncAdapter.java281 String syncKey = new String(data); in getSyncKey() local
282 userLog("SyncKey retrieved as ", syncKey, " from CalendarProvider"); in getSyncKey()
283 return syncKey; in getSyncKey()
296 public void setSyncKey(String syncKey, boolean inCommands) throws IOException { in setSyncKey() argument
298 if ("0".equals(syncKey) || !inCommands) { in setSyncKey()
306 syncKey.getBytes()); in setSyncKey()
307 userLog("SyncKey set to ", syncKey, " in CalendarProvider"); in setSyncKey()
312 mMailbox.mSyncKey = syncKey; in setSyncKey()
DEmailSyncAdapter.java428 String syncKey = getSyncKey(); in getEstimate()
429 userLog("gie, sending ", className, " syncKey: ", syncKey); in getEstimate()
437 s.data(Tags.SYNC_SYNC_KEY, syncKey); in getEstimate()
441 s.data(Tags.SYNC_SYNC_KEY, syncKey); in getEstimate()
446 s.data(Tags.SYNC_SYNC_KEY, syncKey); in getEstimate()
DContactsSyncAdapter.java279 public void setSyncKey(String syncKey, boolean inCommands) throws IOException { in setSyncKey() argument
281 if ("0".equals(syncKey) || !inCommands) { in setSyncKey()
286 mAccountManagerAccount, syncKey.getBytes()); in setSyncKey()
287 userLog("SyncKey set to ", syncKey, " in ContactsProvider"); in setSyncKey()
292 mMailbox.mSyncKey = syncKey; in setSyncKey()