Home | History | Annotate | Download | only in content

Lines Matching defs:PeriodicSync

27 public class PeriodicSync implements Parcelable {
43 * Creates a new PeriodicSync, copying the Bundle. SM no longer uses this ctor - kept around
48 public PeriodicSync(Account account, String authority, Bundle extras, long periodInSeconds) {
65 public PeriodicSync(PeriodicSync other) {
75 * A PeriodicSync for a sync with a specified provider.
77 public PeriodicSync(Account account, String authority, Bundle extras,
86 private PeriodicSync(Parcel in) {
108 public static final Creator<PeriodicSync> CREATOR = new Creator<PeriodicSync>() {
110 public PeriodicSync createFromParcel(Parcel source) {
111 return new PeriodicSync(source);
115 public PeriodicSync[] newArray(int size) {
116 return new PeriodicSync[size];
125 if (!(o instanceof PeriodicSync)) {
128 final PeriodicSync other = (PeriodicSync) o;