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

  /packages/apps/UnifiedEmail/tests/src/com/android/mail/providers/
UIProviderTest.java 23 packAndUnpackLastSyncResult(UIProvider.SyncStatus.NO_SYNC,
25 packAndUnpackLastSyncResult(UIProvider.SyncStatus.NO_SYNC,
27 packAndUnpackLastSyncResult(UIProvider.SyncStatus.USER_REFRESH,
29 packAndUnpackLastSyncResult(UIProvider.SyncStatus.USER_REFRESH,
31 packAndUnpackLastSyncResult(UIProvider.SyncStatus.BACKGROUND_SYNC,
33 packAndUnpackLastSyncResult(UIProvider.SyncStatus.BACKGROUND_SYNC,
37 private void packAndUnpackLastSyncResult(int syncStatus, int lastSyncResult) {
38 final int value = UIProvider.createSyncValue(syncStatus, lastSyncResult);
40 assertEquals(syncStatus, UIProvider.getStatusFromLastSyncResult(value));
  /external/mesa3d/src/egl/main/
eglsync.c 93 sync->SyncStatus = EGL_UNSIGNALED_KHR;
132 if (sync->SyncStatus != EGL_SIGNALED_KHR &&
139 *value = sync->SyncStatus;
eglsync.h 48 EGLenum SyncStatus;
eglapi.c     [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
WaitFragment.java 34 import com.android.mail.providers.UIProvider.SyncStatus;
87 && (mAccount.syncStatus & SyncStatus.MANUAL_SYNC_REQUIRED)
88 == SyncStatus.MANUAL_SYNC_REQUIRED) {
AbstractActivityController.java     [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Account.java 32 import com.android.mail.providers.UIProvider.SyncStatus;
164 public final int syncStatus;
284 json.put(AccountColumns.SYNC_STATUS, syncStatus);
412 syncStatus = json.optInt(AccountColumns.SYNC_STATUS);
487 syncStatus = cursor.getInt(cursor.getColumnIndex(UIProvider.AccountColumns.SYNC_STATUS));
573 return (syncStatus & SyncStatus.INITIAL_SYNC_NEEDED) == SyncStatus.INITIAL_SYNC_NEEDED;
577 return (syncStatus & SyncStatus.ACCOUNT_INITIALIZATION_REQUIRED) =
    [all...]
Folder.java 141 public int syncStatus;
147 * requestCode is a value from: {@link UIProvider.SyncStatus},
290 public Builder setSyncStatus(final int syncStatus) {
291 mSyncStatus = syncStatus;
342 int unseenCount, int unreadCount, int totalCount, Uri refreshUri, int syncStatus,
359 this.syncStatus = syncStatus;
398 syncStatus = cursor.getInt(UIProvider.FOLDER_SYNC_STATUS_COLUMN);
456 syncStatus = in.readInt();
492 dest.writeInt(syncStatus);
    [all...]
UIProvider.java 46 public static final class SyncStatus {
83 public static boolean isSyncInProgress(int syncStatus) {
84 return 0 != (syncStatus & (BACKGROUND_SYNC |
127 * @param syncStatus {@link SyncStatus} value describing the reason for the sync
132 public static int createSyncValue(int syncStatus, int lastSyncResult) {
133 return lastSyncResult | (syncStatus << 4);
137 * @param lastSyncValue value containing the {@link SyncStatus} and {@link LastSyncResult}
145 * @param lastSyncValue value containing the {@link SyncStatus} and {@link LastSyncResult}
146 * @return the {@link SyncStatus} within the <code>lastSyncValue</code
    [all...]
  /external/mesa3d/src/egl/drivers/dri2/
egl_dri2.c     [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
EmailContent.java 95 public static final int SYNC_STATUS_NONE = UIProvider.SyncStatus.NO_SYNC;
96 public static final int SYNC_STATUS_USER = UIProvider.SyncStatus.USER_REFRESH;
97 public static final int SYNC_STATUS_BACKGROUND = UIProvider.SyncStatus.BACKGROUND_SYNC;
98 public static final int SYNC_STATUS_LIVE = UIProvider.SyncStatus.LIVE_QUERY;
100 UIProvider.SyncStatus.INITIAL_SYNC_NEEDED;
    [all...]
  /packages/apps/Email/provider_src/com/android/email/service/
ImapService.java     [all...]
  /packages/apps/Email/provider_src/com/android/email/provider/
EmailProvider.java 522 "=" + UIProvider.SyncStatus.NO_SYNC);
    [all...]

Completed in 971 milliseconds