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

  /packages/apps/Email/src/com/android/exchange/adapter/
AbstractSyncAdapter.java 82 * Returns the current SyncKey; override if the SyncKey is stored elsewhere (as for Contacts)
83 * @return the current SyncKey for the Mailbox
88 userLog("Reset SyncKey to 0");
94 public void setSyncKey(String syncKey, boolean inCommands) throws IOException {
95 mMailbox.mSyncKey = syncKey;
CalendarSyncAdapter.java 220 * We get our SyncKey from CalendarProvider. If there's not one, we set it to "0" (the reset
232 // Initialize the SyncKey
236 String syncKey = new String(data);
237 userLog("SyncKey retrieved as ", syncKey, " from CalendarProvider");
238 return syncKey;
241 throw new IOException("Can't get SyncKey from CalendarProvider");
247 * We only need to set this when we're forced to make the SyncKey "0" (a reset). In all other
248 * cases, the SyncKey is set within Calendar
251 public void setSyncKey(String syncKey, boolean inCommands) throws IOException
    [all...]
ContactsSyncAdapter.java 156 * We get our SyncKey from ContactsProvider. If there's not one, we set it to "0" (the reset
168 // Initialize the SyncKey
182 throw new IOException("Can't get SyncKey from ContactsProvider");
188 * We only need to set this when we're forced to make the SyncKey "0" (a reset). In all other
189 * cases, the SyncKey is set within ContactOperations
192 public void setSyncKey(String syncKey, boolean inCommands) throws IOException {
194 if ("0".equals(syncKey) || !inCommands) {
199 mAccountManagerAccount, syncKey.getBytes());
200 userLog("SyncKey set to ", syncKey, " in ContactsProvider")
    [all...]
  /packages/apps/Email/src/com/android/exchange/
CalendarSyncAdapterService.java 133 String syncKey = mailboxCursor.getString(ID_SYNC_KEY_SYNC_KEY);
134 if ((syncKey == null) || (syncKey.equals("0"))) {
EasSyncService.java     [all...]
SyncManager.java     [all...]
  /packages/apps/Email/src/com/android/email/
SecurityPolicy.java 529 * @param syncKey the value to write into the account's mSecuritySyncKey
536 public boolean writeAccount(Account account, String syncKey, boolean update,
541 account.mSecuritySyncKey = syncKey;

Completed in 198 milliseconds