Home | History | Annotate | Download | only in content

Lines Matching refs:account

22 import android.accounts.Account;
28 /** The account to be synced. Can be null. */
29 public final Account account;
45 public PeriodicSync(Account account, String authority, Bundle extras, long periodInSeconds) {
46 this.account = account;
63 this.account = other.account;
74 public PeriodicSync(Account account, String authority, Bundle extras,
76 this.account = account;
84 this.account = in.readParcelable(null);
98 dest.writeParcelable(account, flags);
126 return account.equals(other.account)
156 return "account: " + account +