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

/frameworks/base/core/java/android/content/
H A DSyncResult.java9 public final class SyncResult implements Parcelable { class in inherits:Parcelable
18 public static final SyncResult ALREADY_IN_PROGRESS;
21 ALREADY_IN_PROGRESS = new SyncResult(true);
24 public SyncResult() { method in class:SyncResult
28 private SyncResult(boolean syncAlreadyInProgress) { method in class:SyncResult
38 private SyncResult(Parcel parcel) { method in class:SyncResult
86 public static final Creator<SyncResult> CREATOR = new Creator<SyncResult>() {
87 public SyncResult createFromParcel(Parcel in) {
88 return new SyncResult(i
[all...]

Completed in 129 milliseconds