Home
last modified time | relevance | path

Searched refs:GoogleAuthLibraryCallCredentials (Results 1 – 3 of 3) sorted by relevance

/external/grpc-grpc-java/auth/src/test/java/io/grpc/auth/
DGoogleAuthLibraryCallCredentialsTest.java160 GoogleAuthLibraryCallCredentials callCredentials = in copyCredentialsToHeaders()
161 new GoogleAuthLibraryCallCredentials(credentials); in copyCredentialsToHeaders()
182 GoogleAuthLibraryCallCredentials callCredentials = in invalidBase64()
183 new GoogleAuthLibraryCallCredentials(credentials); in invalidBase64()
198 GoogleAuthLibraryCallCredentials callCredentials = in credentialsFailsWithIoException()
199 new GoogleAuthLibraryCallCredentials(credentials); in credentialsFailsWithIoException()
214 GoogleAuthLibraryCallCredentials callCredentials = in credentialsFailsWithRuntimeException()
215 new GoogleAuthLibraryCallCredentials(credentials); in credentialsFailsWithRuntimeException()
233 GoogleAuthLibraryCallCredentials callCredentials = in credentialsReturnNullMetadata()
234 new GoogleAuthLibraryCallCredentials(credentials); in credentialsReturnNullMetadata()
[all …]
/external/grpc-grpc-java/auth/src/main/java/io/grpc/auth/
DGoogleAuthLibraryCallCredentials.java48 final class GoogleAuthLibraryCallCredentials extends io.grpc.CallCredentials class
51 = Logger.getLogger(GoogleAuthLibraryCallCredentials.class.getName());
53 = createJwtHelperOrNull(GoogleAuthLibraryCallCredentials.class.getClassLoader());
68 public GoogleAuthLibraryCallCredentials(Credentials creds) { in GoogleAuthLibraryCallCredentials() method in GoogleAuthLibraryCallCredentials
73 GoogleAuthLibraryCallCredentials(Credentials creds, JwtHelper jwtHelper) { in GoogleAuthLibraryCallCredentials() method in GoogleAuthLibraryCallCredentials
128 synchronized (GoogleAuthLibraryCallCredentials.this) { in applyRequestMetadata()
DMoreCallCredentials.java35 return new GoogleAuthLibraryCallCredentials(creds); in from()