Home | History | Annotate | Download | only in setup

Lines Matching defs:mAccount

58     private EmailContent.Account mAccount;
89 mAccount = (EmailContent.Account) getIntent().getParcelableExtra(EXTRA_ACCOUNT);
95 Store.StoreInfo info = Store.StoreInfo.getStoreInfo(mAccount.getStoreUri(this), this);
123 // Note: It is OK to use mAccount.mIsDefault here *only* because the account
125 if (mAccount.mIsDefault || makeDefault) {
129 (mAccount.getFlags() & EmailContent.Account.FLAGS_NOTIFY_NEW_MAIL) != 0);
130 SpinnerOption.setSpinnerOptionValue(mCheckFrequencyView, mAccount
189 mAccount.mFlags &= ~Account.FLAGS_INCOMPLETE;
190 AccountSettingsUtils.commitSettings(this, mAccount);
192 AccountSetupNames.actionSetNames(this, mAccount.mId, mEasFlowMode);
199 mAccount.setDisplayName(mAccount.getEmailAddress());
200 int newFlags = mAccount.getFlags() & ~(EmailContent.Account.FLAGS_NOTIFY_NEW_MAIL);
204 mAccount.setFlags(newFlags);
205 mAccount.setSyncInterval((Integer)((SpinnerOption)mCheckFrequencyView
209 mAccount.setSyncLookback(window);
211 mAccount.setDefaultAccount(mDefaultView.isChecked());
214 if (!mAccount.isSaved()
215 && mAccount.mHostAuthRecv != null
216 && mAccount.mHostAuthRecv.mProtocol.equals("eas")) {
220 mAccount.mFlags |= Account.FLAGS_INCOMPLETE;
221 AccountSettingsUtils.commitSettings(this, mAccount);
222 ExchangeStore.addSystemAccount(getApplication(), mAccount,
274 SpinnerOption.setSpinnerOptionValue(mSyncWindowView, mAccount.getSyncLookback());