Home | History | Annotate | Download | only in content

Lines Matching refs:account

19 import android.accounts.Account;
32 private static final Account REDACTED_ACCOUNT = new Account("*****", "*****");
38 * The {@link Account} that is currently being synced.
40 public final Account account;
55 * Creates a SyncInfo object with an unusable Account. Used when the caller receiving this
66 public SyncInfo(int authorityId, Account account, String authority, long startTime) {
68 this.account = account;
76 this.account = new Account(other.account.name, other.account.type);
89 parcel.writeParcelable(account, flags);
97 account = parcel.readParcelable(Account.class.getClassLoader());