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

  /packages/apps/Exchange/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 502 String syncKey = "0";
506 syncKey = existingAccount.mSyncKey;
509 s.start(Tags.FOLDER_FOLDER_SYNC).start(Tags.FOLDER_SYNC_KEY).text(syncKey)
    [all...]
ExchangeService.java     [all...]
  /packages/apps/Exchange/src/com/android/exchange/adapter/
AbstractSyncAdapter.java 122 * Returns the current SyncKey; override if the SyncKey is stored elsewhere (as for Contacts)
123 * @return the current SyncKey for the Mailbox
128 userLog("Reset SyncKey to 0");
134 public void setSyncKey(String syncKey, boolean inCommands) throws IOException {
135 mMailbox.mSyncKey = syncKey;
EmailSyncAdapter.java 403 String syncKey = getSyncKey();
404 userLog("gie, sending ", className, " syncKey: ", syncKey);
412 s.data(Tags.SYNC_SYNC_KEY, syncKey);
416 s.data(Tags.SYNC_SYNC_KEY, syncKey);
421 s.data(Tags.SYNC_SYNC_KEY, syncKey);
    [all...]
CalendarSyncAdapter.java 245 * We get our SyncKey from CalendarProvider. If there's not one, we set it to "0" (the reset
259 // Initialize the SyncKey
263 String syncKey = new String(data);
264 userLog("SyncKey retrieved as ", syncKey, " from CalendarProvider");
265 return syncKey;
268 throw new IOException("Can't get SyncKey from CalendarProvider");
274 * We only need to set this when we're forced to make the SyncKey "0" (a reset). In all other
275 * cases, the SyncKey is set within Calendar
278 public void setSyncKey(String syncKey, boolean inCommands) throws IOException
    [all...]
ContactsSyncAdapter.java 175 * We get our SyncKey from ContactsProvider. If there's not one, we set it to "0" (the reset
187 // Initialize the SyncKey
200 throw new IOException("Can't get SyncKey from ContactsProvider");
206 * We only need to set this when we're forced to make the SyncKey "0" (a reset). In all other
207 * cases, the SyncKey is set within ContactOperations
210 public void setSyncKey(String syncKey, boolean inCommands) throws IOException {
212 if ("0".equals(syncKey) || !inCommands) {
217 mAccountManagerAccount, syncKey.getBytes());
218 userLog("SyncKey set to ", syncKey, " in ContactsProvider")
    [all...]

Completed in 118 milliseconds