Home | History | Annotate | Download | only in ui

Lines Matching refs:mAccount

56     private Account mAccount = null;
91 * Copy {@link RecentFolderList#mAccount} in case the account changes between when the
95 private final Account mAccount;
106 mAccount = account;
112 final Uri uri = mAccount.recentFolderListUri;
152 final boolean accountSwitched = (mAccount == null) || !mAccount.matches(account);
153 mAccount = account;
165 if (mAccount == null || c == null) {
166 LogUtils.e(TAG, "RecentFolderList.loadFromUiProvider: bad input. mAccount=%s,cursor=%s",
167 mAccount, c);
182 LogUtils.v(TAG, "Account %s, Recent: %s", mAccount.name, folder.name);
194 if (mAccount == null || !mAccount.equals(account)) {
211 new StoreRecent(mAccount, folder).execute();
226 final FolderUri defaultInbox = (mAccount == null)
228 : new FolderUri(Settings.getDefaultInboxUri(mAccount.settings));