Searched refs:tokenType (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/services/core/java/com/android/server/accounts/ |
D | TokenCache.java | 51 public final String tokenType; field in TokenCache.Key 54 public Key(Account account, String tokenType, String packageName, byte[] sigDigest) { in Key() argument 56 this.tokenType = tokenType; in Key() 67 && Objects.equals(tokenType, cacheKey.tokenType) in equals() 78 ^ tokenType.hashCode() in hashCode() 192 String tokenType, in put() argument 200 Key k = new Key(account, tokenType, packageName, sigDigest); in put() 220 public String get(Account account, String tokenType, String packageName, byte[] sigDigest) { in get() argument 221 Key k = new Key(account, tokenType, packageName, sigDigest); in get()
|
D | AccountManagerService.java | 2488 String tokenType = tokenInfo.second; in invalidateAuthToken() local 2489 writeAuthTokenIntoCacheLocked(accounts, act, tokenType, null); in invalidateAuthToken() 2525 String tokenType, in saveCachedToken() argument 2529 if (account == null || tokenType == null || callerPkg == null || callerSigDigest == null) { in saveCachedToken() 2536 account, token, tokenType, callerPkg, callerSigDigest, expiryMillis); in saveCachedToken() 6125 String tokenType, 6130 account, tokenType, callingPackage, pkgSigDigest);
|
/frameworks/base/core/java/android/os/ |
D | PatternMatcher.java | 459 int tokenType; 470 tokenType = TOKEN_TYPE_ANY; 475 tokenType = patternChar == PARSED_TOKEN_CHAR_SET_START 485 tokenType = TOKEN_TYPE_LITERAL; 524 int matched = matchChars(match, im, LM, tokenType, minRepetition, maxRepetition, 538 private static int matchChars(String match, int im, final int lm, int tokenType, 544 && matchChar(match, im + matched, lm, tokenType, parsedPattern, tokenStart, 552 private static boolean matchChar(String match, int im, final int lm, int tokenType, 557 switch (tokenType) {
|