Home | History | Annotate | Download | only in setup

Lines Matching refs:Account

28 import com.android.emailcommon.provider.Account;
44 private HashSet<Account> mAccounts = new HashSet<Account>();
61 for (Account account : mAccounts) {
62 Uri uri = ContentUris.withAppendedId(Account.CONTENT_URI, account.mId);
87 * Create a dummy account with minimal fields
89 private Account createTestAccount(String scheme) throws URISyntaxException {
90 Account account = new Account();
91 HostAuth auth = account.getOrCreateHostAuthRecv(mContext);
93 account.save(mContext);
94 mAccounts.add(account);
95 SetupData.init(SetupData.FLOW_MODE_NORMAL, account);
96 return account;
100 * Create an intent with the Account in it