Searched refs:authTokensForAccount (Results 1 – 2 of 2) sorted by relevance
6142 Map<String, String> authTokensForAccount = accounts.authTokenCache.get(account);6143 if (authTokensForAccount == null) {6144 authTokensForAccount = accounts.accountsDb.findAuthTokensByAccount(account);6145 accounts.authTokenCache.put(account, authTokensForAccount);6148 authTokensForAccount.remove(key);6150 authTokensForAccount.put(key, value);6159 if (authTokensForAccount != null) {6160 return authTokensForAccount.get(authTokenType);6167 if (authTokensForAccount == null) {6170 accounts.authTokenCache.put(account, authTokensForAccount);[all …]
349 HashMap<String, String> authTokensForAccount = new HashMap<>(); in findAuthTokensByAccount() local359 authTokensForAccount.put(type, authToken); in findAuthTokensByAccount()364 return authTokensForAccount; in findAuthTokensByAccount()