Home | History | Annotate | Download | only in setup

Lines Matching defs:mAccount

71     private Account mAccount;
109 mAccount = savedInstanceState.getParcelable(BUNDLE_ACCOUNT);
113 if (mAccount == null) {
134 outState.putParcelable(BUNDLE_ACCOUNT, mAccount);
152 * Loads {@link #mAccount} and {@link #mMailbox}.
167 mAccount = Account.restoreAccountWithId(c, mMailbox.mAccountKey);
174 if ((mAccount == null) || (mMailbox == null)) {
219 * Called when {@link #mAccount} and {@link #mMailbox} are loaded (either by the async task
223 Preconditions.checkNotNull(mAccount);
236 setupLookbackPreferenceOptions(this, mSyncLookbackPref, mAccount);
259 syncInterval = mAccount.mSyncInterval;
281 return mAccount.mSyncLookback;
309 * Updates {@link #mAccount}/{@link #mMailbox}, but doesn't save to the database yet.
318 mAccount.mSyncInterval = syncInterval;
319 mAccount.mSyncLookback = syncLookback;
344 final Account account = mAccount;