Home
last modified time | relevance | path

Searched refs:callCredentials (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() local
158 callCredentials.applyRequestMetadata(method, attrs, executor, applier); in copyCredentialsToHeaders()
178 GoogleAuthLibraryCallCredentials callCredentials = in invalidBase64() local
180 callCredentials.applyRequestMetadata(method, attrs, executor, applier); in invalidBase64()
194 GoogleAuthLibraryCallCredentials callCredentials = in credentialsFailsWithIoException() local
196 callCredentials.applyRequestMetadata(method, attrs, executor, applier); in credentialsFailsWithIoException()
210 GoogleAuthLibraryCallCredentials callCredentials = in credentialsFailsWithRuntimeException() local
212 callCredentials.applyRequestMetadata(method, attrs, executor, applier); in credentialsFailsWithRuntimeException()
229 GoogleAuthLibraryCallCredentials callCredentials = in credentialsReturnNullMetadata() local
232 callCredentials.applyRequestMetadata(method, attrs, executor, applier); in credentialsReturnNullMetadata()
[all …]
/external/grpc-grpc/src/csharp/Grpc.Core/
DChannelCredentials.cs67 …c ChannelCredentials Create(ChannelCredentials channelCredentials, CallCredentials callCredentials) in Create() argument
69 return new CompositeChannelCredentials(channelCredentials, callCredentials); in Create()
185 readonly CallCredentials callCredentials; field in Grpc.Core.CompositeChannelCredentials
193 …CompositeChannelCredentials(ChannelCredentials channelCredentials, CallCredentials callCredentials) in CompositeChannelCredentials() argument
196 this.callCredentials = GrpcPreconditions.CheckNotNull(callCredentials); in CompositeChannelCredentials()
202 using (var callCreds = callCredentials.ToNativeCredentials()) in CreateNativeCredentials()
/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/
DMetadataCredentialsTest.cs88 var callCredentials = CallCredentials.FromInterceptor(asyncAuthInterceptor); in MetadataCredentials_PerCall()
89 client.UnaryCall(new SimpleRequest { }, new CallOptions(credentials: callCredentials)); in MetadataCredentials_PerCall()
157 …var callCredentials = CallCredentials.FromInterceptor(new AsyncAuthInterceptor((context, metadata)… in MetadataCredentials_InterceptorThrows()
161 …elCredentials = ChannelCredentials.Create(TestCredentials.CreateSslCredentials(), callCredentials); in MetadataCredentials_InterceptorThrows()