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.java156 GoogleAuthLibraryCallCredentials callCredentials = in copyCredentialsToHeaders()
157 new GoogleAuthLibraryCallCredentials(credentials); in copyCredentialsToHeaders()
178 GoogleAuthLibraryCallCredentials callCredentials = in invalidBase64()
179 new GoogleAuthLibraryCallCredentials(credentials); in invalidBase64()
194 GoogleAuthLibraryCallCredentials callCredentials = in credentialsFailsWithIoException()
195 new GoogleAuthLibraryCallCredentials(credentials); in credentialsFailsWithIoException()
210 GoogleAuthLibraryCallCredentials callCredentials = in credentialsFailsWithRuntimeException()
211 new GoogleAuthLibraryCallCredentials(credentials); in credentialsFailsWithRuntimeException()
229 GoogleAuthLibraryCallCredentials callCredentials = in credentialsReturnNullMetadata()
230 new GoogleAuthLibraryCallCredentials(credentials); in credentialsReturnNullMetadata()
[all …]
/external/grpc-grpc-java/auth/src/main/java/io/grpc/auth/
DGoogleAuthLibraryCallCredentials.java50 final class GoogleAuthLibraryCallCredentials implements CallCredentials { class
52 = Logger.getLogger(GoogleAuthLibraryCallCredentials.class.getName());
54 = createJwtHelperOrNull(GoogleAuthLibraryCallCredentials.class.getClassLoader());
65 public GoogleAuthLibraryCallCredentials(Credentials creds) { in GoogleAuthLibraryCallCredentials() method in GoogleAuthLibraryCallCredentials
70 GoogleAuthLibraryCallCredentials(Credentials creds, JwtHelper jwtHelper) { in GoogleAuthLibraryCallCredentials() method in GoogleAuthLibraryCallCredentials
127 synchronized (GoogleAuthLibraryCallCredentials.this) { in applyRequestMetadata()
DMoreCallCredentials.java35 return new GoogleAuthLibraryCallCredentials(creds); in from()