Home
last modified time | relevance | path

Searched refs:mAccountTypeToAuthorities (Results 1 – 2 of 2) sorted by relevance

/aosp12/packages/apps/Settings/src/com/android/settings/accounts/
H A DChooseAccountPreferenceController.java68 private Map<String, List<String>> mAccountTypeToAuthorities; field in ChooseAccountPreferenceController
206 if (mAccountTypeToAuthorities == null) { in getAuthoritiesForAccountType()
207 mAccountTypeToAuthorities = Maps.newHashMap(); in getAuthoritiesForAccountType()
212 List<String> authorities = mAccountTypeToAuthorities.get(sa.accountType); in getAuthoritiesForAccountType()
215 mAccountTypeToAuthorities.put(sa.accountType, authorities); in getAuthoritiesForAccountType()
224 return mAccountTypeToAuthorities.get(type); in getAuthoritiesForAccountType()
/aosp12/frameworks/base/packages/SettingsLib/src/com/android/settingslib/accounts/
H A DAuthenticatorHelper.java56 private final HashMap<String, ArrayList<String>> mAccountTypeToAuthorities = new HashMap<>(); field in AuthenticatorHelper
250 return mAccountTypeToAuthorities.get(type); in getAuthoritiesForAccountType()
254 mAccountTypeToAuthorities.clear(); in buildAccountTypeToAuthoritiesMap()
259 ArrayList<String> authorities = mAccountTypeToAuthorities.get(sa.accountType); in buildAccountTypeToAuthoritiesMap()
262 mAccountTypeToAuthorities.put(sa.accountType, authorities); in buildAccountTypeToAuthoritiesMap()