Home | History | Annotate | Download | only in content

Lines Matching full:periodicsync

28 public class PeriodicSync implements Parcelable {
38 /** Creates a new PeriodicSync, copying the Bundle */
39 public PeriodicSync(Account account, String authority, Bundle extras, long period) {
57 public static final Creator<PeriodicSync> CREATOR = new Creator<PeriodicSync>() {
58 public PeriodicSync createFromParcel(Parcel source) {
59 return new PeriodicSync(Account.CREATOR.createFromParcel(source),
63 public PeriodicSync[] newArray(int size) {
64 return new PeriodicSync[size];
73 if (!(o instanceof PeriodicSync)) {
77 final PeriodicSync other = (PeriodicSync) o;