Home | History | Annotate | Download | only in setup

Lines Matching refs:mAccount

51     private Account mAccount;
94 mAccount = EmailContent.Account.restoreAccountWithId(this, accountId);
96 if (mAccount == null) {
101 HostAuth hostAuth = HostAuth.restoreHostAuthWithId(this, mAccount.mHostAuthKeyRecv);
117 // mDescription.setText(mAccount.getDescription());
118 if (mAccount != null && mAccount.getSenderName() != null) {
119 mName.setText(mAccount.getSenderName());
153 if (mAccount != null) {
154 AccountSetupBasics.actionAccountCreateFinished(this, mAccount.mId);
156 // Safety check here; If mAccount is null (due to external issues or bugs)
173 mAccount.setDisplayName(mDescription.getText().toString());
176 mAccount.setSenderName(name);
178 cv.put(AccountColumns.DISPLAY_NAME, mAccount.getDisplayName());
180 mAccount.update(this, cv);
186 mCheckAccountStateTask = new CheckAccountStateTask(mAccount.mId);