Home | History | Annotate | Download | only in providers

Lines Matching defs:syncStatus

32 import com.android.mail.providers.UIProvider.SyncStatus;
161 public final int syncStatus;
256 json.put(AccountColumns.SYNC_STATUS, syncStatus);
351 syncStatus = json.optInt(AccountColumns.SYNC_STATUS);
421 syncStatus = cursor.getInt(cursor.getColumnIndex(UIProvider.AccountColumns.SYNC_STATUS));
487 return (syncStatus & SyncStatus.INITIAL_SYNC_NEEDED) == SyncStatus.INITIAL_SYNC_NEEDED;
491 return (syncStatus & SyncStatus.ACCOUNT_INITIALIZATION_REQUIRED) ==
492 SyncStatus.ACCOUNT_INITIALIZATION_REQUIRED;
522 syncStatus = in.readInt();
567 dest.writeInt(syncStatus);
629 (syncStatus == other.syncStatus) &&
656 return ((this.syncStatus != other.syncStatus)
682 syncStatus,
814 map.put(AccountColumns.SYNC_STATUS, syncStatus);