Home | History | Annotate | Download | only in content

Lines Matching refs:extras

32     /** Any extras that parameters that are to be passed to the sync adapter. */
33 public final Bundle extras;
45 public PeriodicSync(Account account, String authority, Bundle extras, long periodInSeconds) {
48 if (extras == null) {
49 this.extras = new Bundle();
51 this.extras = new Bundle(extras);
65 this.extras = new Bundle(other.extras);
74 public PeriodicSync(Account account, String authority, Bundle extras,
78 this.extras = new Bundle(extras);
86 this.extras = in.readBundle();
100 dest.writeBundle(extras);
129 && syncExtrasEquals(extras, other.extras);