Home | History | Annotate | Download | only in setup

Lines Matching defs:mAccount

75     private EmailContent.Account mAccount;
179 mAccount = (EmailContent.Account)getIntent().getParcelableExtra(EXTRA_ACCOUNT);
187 mAccount = (EmailContent.Account)savedInstanceState.getParcelable(EXTRA_ACCOUNT);
192 URI uri = new URI(mAccount.getStoreUri(this));
228 throw new Error("Unknown account type: " + mAccount.getStoreUri(this));
237 SpinnerOption.setSpinnerOptionValue(mDeletePolicyView, mAccount.getDeletePolicy());
261 outState.putParcelable(EXTRA_ACCOUNT, mAccount);
332 if (mAccount.isSaved()) {
333 mAccount.update(this, mAccount.toContentValues());
334 mAccount.mHostAuthRecv.update(this, mAccount.mHostAuthRecv.toContentValues());
336 mAccount.save(this);
347 URI oldUri = new URI(mAccount.getSenderUri(this));
357 mAccount.setSenderUri(this, uri.toString());
365 AccountSetupOutgoing.actionOutgoingSettings(this, mAccount, mMakeDefault);
399 mAccount.setStoreUri(this, uri.toString());
403 mAccount.mId,
417 mAccount.setDeletePolicy((Integer)((SpinnerOption)mDeletePolicyView.getSelectedItem()).value);
418 AccountSetupCheckSettings.actionValidateSettings(this, mAccount, true, false);