Searched defs:lastSyncResult (Results 1 - 3 of 3) sorted by relevance

/packages/apps/UnifiedEmail/tests/src/com/android/mail/providers/
H A DUIProviderTest.java37 private void packAndUnpackLastSyncResult(int syncStatus, int lastSyncResult) { argument
38 final int value = UIProvider.createSyncValue(syncStatus, lastSyncResult);
41 assertEquals(lastSyncResult, UIProvider.getResultFromLastSyncResult(value));
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DFolder.java149 public int lastSyncResult; field in class:Folder
294 public Builder setLastSyncResult(final int lastSyncResult) { argument
295 mLastSyncResult = lastSyncResult;
343 int lastSyncResult, int type, int iconResId, int notificationIconResId, String bgColor,
360 this.lastSyncResult = lastSyncResult;
399 lastSyncResult = cursor.getInt(UIProvider.FOLDER_LAST_SYNC_RESULT_COLUMN);
457 lastSyncResult = in.readInt();
493 dest.writeInt(lastSyncResult);
859 return ((lastSyncResult
340 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.java128 * @param lastSyncResult {@link LastSyncResult} value describing the result of the sync
132 public static int createSyncValue(int syncStatus, int lastSyncResult) { argument
133 return lastSyncResult | (syncStatus << 4);
1016 public static final String LAST_SYNC_RESULT = "lastSyncResult";

Completed in 83 milliseconds