Home | History | Annotate | Download | only in providers

Lines Matching defs:syncStatus

35 import com.android.mail.providers.UIProvider.SyncStatus;
167 public final int syncStatus;
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) ==
558 SyncStatus.ACCOUNT_INITIALIZATION_REQUIRED;
588 syncStatus = in.readInt();
635 dest.writeInt(syncStatus);
700 (syncStatus == other.syncStatus) &&
728 return ((this.syncStatus != other.syncStatus)
754 syncStatus,
913 map.put(AccountColumns.SYNC_STATUS, syncStatus);