Searched defs:syncStatus (Results 1 - 5 of 5) sorted by relevance

/packages/apps/Exchange/src/com/android/exchange/eas/
H A DEasFullSyncOperation.java333 * @param syncStatus The status for the current sync.
336 final int syncStatus) {
337 cv.put(Mailbox.UI_SYNC_STATUS, syncStatus);
338 if (syncStatus == EmailContent.SYNC_STATUS_NONE) {
335 updateMailbox(final Mailbox mailbox, final ContentValues cv, final int syncStatus) argument
/packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
H A DEmailServiceStatus.java108 private static void syncStatus(final ContentResolver cr, final Bundle syncExtras, method in class:EmailServiceStatus
143 syncStatus(cr, syncExtras, SYNC_STATUS_TYPE_MAILBOX, mailboxId, statusCode, progress,
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DAccount.java167 public final int syncStatus; field in class:Account
274 json.put(AccountColumns.SYNC_STATUS, syncStatus);
401 syncStatus = json.optInt(AccountColumns.SYNC_STATUS);
474 syncStatus = cursor.getInt(cursor.getColumnIndex(UIProvider.AccountColumns.SYNC_STATUS));
553 return (syncStatus & SyncStatus.INITIAL_SYNC_NEEDED) == SyncStatus.INITIAL_SYNC_NEEDED;
557 return (syncStatus & SyncStatus.ACCOUNT_INITIALIZATION_REQUIRED) ==
588 syncStatus = in.readInt();
635 dest.writeInt(syncStatus);
700 (syncStatus == other.syncStatus)
[all...]
H A DFolder.java138 public int syncStatus; field in class:Folder
287 public Builder setSyncStatus(final int syncStatus) { argument
288 mSyncStatus = syncStatus;
339 int unseenCount, int unreadCount, int totalCount, Uri refreshUri, int syncStatus,
356 this.syncStatus = syncStatus;
396 syncStatus = cursor.getInt(UIProvider.FOLDER_SYNC_STATUS_COLUMN);
455 syncStatus = in.readInt();
492 dest.writeInt(syncStatus);
613 return UIProvider.SyncStatus.isSyncInProgress(syncStatus);
337 Folder(int id, String persistentId, Uri uri, String name, int capabilities, boolean hasChildren, int syncWindow, Uri conversationListUri, Uri childFoldersListUri, int unseenCount, int unreadCount, int totalCount, Uri refreshUri, int syncStatus, int lastSyncResult, int type, int iconResId, int notificationIconResId, String bgColor, String fgColor, Uri loadMoreUri, String hierarchicalDesc, Uri parent, final long lastMessageTimestamp, final String unreadSenders) argument
[all...]
H A DUIProvider.java82 public static boolean isSyncInProgress(int syncStatus) { argument
83 return 0 != (syncStatus & (BACKGROUND_SYNC |
453 public static final String SYNC_STATUS = "syncStatus";
954 public static final String SYNC_STATUS = "syncStatus";

Completed in 107 milliseconds