Home | History | Annotate | Download | only in content

Lines Matching refs:account

22 import android.accounts.Account;
29 /** The account to be synced */
30 public final Account account;
39 public PeriodicSync(Account account, String authority, Bundle extras, long period) {
40 this.account = account;
51 account.writeToParcel(dest, flags);
59 return new PeriodicSync(Account.CREATOR.createFromParcel(source),
79 return account.equals(other.account)