OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:syncKey
(Results
1 - 8
of
8
) 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"))) {
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
...]
EasAccountService.java
231
userLog("Account
syncKey
INIT to 0");
314
userLog("Sending Account
syncKey
: ", mAccount.mSyncKey);
568
// 2) The
syncKey
isn't "0" (i.e. it's synced at least once)
594
String
syncKey
= c.getString(Mailbox.CONTENT_SYNC_KEY_COLUMN);
595
if ((
syncKey
== null) ||
syncKey
.equals("0")) {
[
all
...]
ExchangeService.java
[
all
...]
/packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
AbstractSyncAdapter.java
134
* Returns the current
SyncKey
; override if the
SyncKey
is stored elsewhere (as for Contacts)
135
* @return the current
SyncKey
for the Mailbox
140
userLog("Reset
SyncKey
to 0");
146
public void setSyncKey(String
syncKey
, boolean inCommands) throws IOException {
147
mMailbox.mSyncKey =
syncKey
;
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
...]
EmailSyncAdapter.java
428
String
syncKey
= getSyncKey();
429
userLog("gie, sending ", className, "
syncKey
: ",
syncKey
);
437
s.data(Tags.SYNC_SYNC_KEY,
syncKey
);
441
s.data(Tags.SYNC_SYNC_KEY,
syncKey
);
446
s.data(Tags.SYNC_SYNC_KEY,
syncKey
);
[
all
...]
ContactsSyncAdapter.java
244
* We get our
SyncKey
from ContactsProvider. If there's not one, we set it to "0" (the reset
256
// Initialize the
SyncKey
269
throw new IOException("Can't get
SyncKey
from ContactsProvider");
275
* We only need to set this when we're forced to make the
SyncKey
"0" (a reset). In all other
276
* cases, the
SyncKey
is set within ContactOperations
279
public void setSyncKey(String
syncKey
, boolean inCommands) throws IOException {
281
if ("0".equals(
syncKey
) || !inCommands) {
286
mAccountManagerAccount,
syncKey
.getBytes());
287
userLog("
SyncKey
set to ",
syncKey
, " in ContactsProvider")
[
all
...]
Completed in 2957 milliseconds