Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/accounts/
DAccountManagerService.java213 final HashMap<String, Account[]> accountCache = new LinkedHashMap<>(); field in AccountManagerService.UserAccounts
535 final Account[] accountsOfType = accounts.accountCache.get(accountType); in getAccountsAndVisibilityForPackage()
1181 accounts.accountCache.clear(); in validateAccountsInternal()
1244 accounts.accountCache.put(accountType, accountsForType); in validateAccountsInternal()
2667 if (accounts.accountCache.containsKey(account.type)) { in accountExistsCache()
2668 for (Account acc : accounts.accountCache.get(account.type)) { in accountExistsCache()
5565 if (getUserAccountsForCaller().accountCache.containsKey(accountType)) {
5566 for (Account account : getUserAccountsForCaller().accountCache.get(accountType)) {
5798 final Account[] oldAccountsForType = accounts.accountCache.get(account.type);
5807 accounts.accountCache.remove(account.type);
[all …]
DAccountManagerBackupHelper.java107 for (Account[] accountsPerType : accounts.accountCache.values()) { in apply()