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.java153 GoogleAuthLibraryCallCredentials callCredentials = in copyCredentialsToHeaders()
154 new GoogleAuthLibraryCallCredentials(credentials); in copyCredentialsToHeaders()
175 GoogleAuthLibraryCallCredentials callCredentials = in invalidBase64()
176 new GoogleAuthLibraryCallCredentials(credentials); in invalidBase64()
191 GoogleAuthLibraryCallCredentials callCredentials = in credentialsFailsWithIoException()
192 new GoogleAuthLibraryCallCredentials(credentials); in credentialsFailsWithIoException()
207 GoogleAuthLibraryCallCredentials callCredentials = in credentialsFailsWithRuntimeException()
208 new GoogleAuthLibraryCallCredentials(credentials); in credentialsFailsWithRuntimeException()
226 GoogleAuthLibraryCallCredentials callCredentials = in credentialsReturnNullMetadata()
227 new GoogleAuthLibraryCallCredentials(credentials); in credentialsReturnNullMetadata()
[all …]
/external/grpc-grpc-java/auth/src/main/java/io/grpc/auth/
DGoogleAuthLibraryCallCredentials.java49 final class GoogleAuthLibraryCallCredentials extends CallCredentials2 { class
51 = Logger.getLogger(GoogleAuthLibraryCallCredentials.class.getName());
53 = createJwtHelperOrNull(GoogleAuthLibraryCallCredentials.class.getClassLoader());
64 public GoogleAuthLibraryCallCredentials(Credentials creds) { in GoogleAuthLibraryCallCredentials() method in GoogleAuthLibraryCallCredentials
69 GoogleAuthLibraryCallCredentials(Credentials creds, JwtHelper jwtHelper) { in GoogleAuthLibraryCallCredentials() method in GoogleAuthLibraryCallCredentials
120 synchronized (GoogleAuthLibraryCallCredentials.this) { in applyRequestMetadata()
DMoreCallCredentials.java35 return new GoogleAuthLibraryCallCredentials(creds); in from()