Home | History | Annotate | Download | only in content

Lines Matching refs:account

22 import android.accounts.Account;
30 /** The account to be synced. Can be null. */
31 public final Account account;
47 public PeriodicSync(Account account, String authority, Bundle extras, long periodInSeconds) {
48 this.account = account;
65 this.account = other.account;
76 public PeriodicSync(Account account, String authority, Bundle extras,
78 this.account = account;
86 this.account = in.readParcelable(null);
100 dest.writeParcelable(account, flags);
128 return account.equals(other.account)
160 return "account: " + account +