Searched refs:syncKey (Results 1 – 8 of 8) sorted by relevance
/packages/apps/Exchange/exchange2/src/com/android/exchange/ |
D | CalendarSyncAdapterService.java | 133 String syncKey = mailboxCursor.getString(ID_SYNC_KEY_SYNC_KEY); in performSync() local 134 if ((syncKey == null) || (syncKey.equals("0"))) { in performSync()
|
D | EasSyncService.java | 471 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()
|
D | EasAccountService.java | 594 String syncKey = c.getString(Mailbox.CONTENT_SYNC_KEY_COLUMN); in runPingLoop() local 595 if ((syncKey == null) || syncKey.equals("0")) { in runPingLoop()
|
D | ExchangeService.java | 1365 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/ |
D | AbstractSyncAdapter.java | 146 public void setSyncKey(String syncKey, boolean inCommands) throws IOException { in setSyncKey() argument 147 mMailbox.mSyncKey = syncKey; in setSyncKey()
|
D | CalendarSyncAdapter.java | 281 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()
|
D | EmailSyncAdapter.java | 428 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()
|
D | ContactsSyncAdapter.java | 279 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()
|