Home | History | Annotate | Download | only in setup

Lines Matching refs:account

31 import com.android.emailcommon.provider.Account;
35 * Prompts the user to select an account type. The account type, along with the
51 // If we're in account setup flow mode, for EAS, skip this screen and "click" EAS
85 Account account = SetupData.getAccount();
86 HostAuth hostAuth = account.mHostAuthRecv;
91 AccountSetupBasics.setFlagsForProtocol(account, HostAuth.SCHEME_POP3);
93 AccountSetupIncoming.actionIncomingSettings(this, SetupData.getFlowMode(), account);
98 * The user has selected an IMAP account type. Try to put together a URI using the entered
102 Account account = SetupData.getAccount();
103 HostAuth hostAuth = account.mHostAuthRecv;
108 AccountSetupBasics.setFlagsForProtocol(account, HostAuth.SCHEME_IMAP);
110 AccountSetupIncoming.actionIncomingSettings(this, SetupData.getFlowMode(), account);
115 * The user has selected an exchange account type. Set the mail delete policy here, because
119 Account account = SetupData.getAccount();
120 HostAuth recvAuth = account.getOrCreateHostAuthRecv(this);
123 HostAuth sendAuth = account.getOrCreateHostAuthSend(this);
126 AccountSetupBasics.setFlagsForProtocol(account, HostAuth.SCHEME_EAS);
128 AccountSetupExchange.actionIncomingSettings(this, SetupData.getFlowMode(), account);