Home | History | Annotate | Download | only in mail

Lines Matching defs:hostAuth

32 import com.android.emailcommon.provider.HostAuth;
51 static final HashMap<HostAuth, Store> sStores = new HashMap<HostAuth, Store>();
75 * HostAuth row. If this ever changes (e.g. such as the user updating the
90 HostAuth hostAuth = account.getOrCreateHostAuthRecv(context);
92 if (hostAuth == null) return null;
94 Store store = sStores.get(hostAuth);
111 final HostAuth hostAuth = account.getOrCreateHostAuthRecv(context);
112 Class<? extends Store> klass = sStoreClasses.get(hostAuth.mProtocol);
127 // Don't cache this unless it's we've got a saved HostAuth
128 if (hostAuth.mId != EmailContent.NOT_SAVED && cacheInstance) {
129 sStores.put(hostAuth, store);
145 return sStores.remove(HostAuth.restoreHostAuthWithId(context, account.mHostAuthKeyRecv));
191 * @return a Bundle containing an error code and a HostAuth (if successful)