Home | History | Annotate | Download | only in content

Lines Matching defs:extras

34     /** Any extras that parameters that are to be passed to the sync adapter. */
35 public final Bundle extras;
47 public PeriodicSync(Account account, String authority, Bundle extras, long periodInSeconds) {
50 if (extras == null) {
51 this.extras = new Bundle();
53 this.extras = new Bundle(extras);
67 this.extras = new Bundle(other.extras);
76 public PeriodicSync(Account account, String authority, Bundle extras,
80 this.extras = new Bundle(extras);
88 this.extras = in.readBundle();
102 dest.writeBundle(extras);
131 && syncExtrasEquals(extras, other.extras);