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.java153 GoogleAuthLibraryCallCredentials callCredentials = in copyCredentialsToHeaders() local
155 callCredentials.applyRequestMetadata(new RequestInfoImpl(), executor, applier); in copyCredentialsToHeaders()
175 GoogleAuthLibraryCallCredentials callCredentials = in invalidBase64() local
177 callCredentials.applyRequestMetadata(new RequestInfoImpl(), executor, applier); in invalidBase64()
191 GoogleAuthLibraryCallCredentials callCredentials = in credentialsFailsWithIoException() local
193 callCredentials.applyRequestMetadata(new RequestInfoImpl(), executor, applier); in credentialsFailsWithIoException()
207 GoogleAuthLibraryCallCredentials callCredentials = in credentialsFailsWithRuntimeException() local
209 callCredentials.applyRequestMetadata(new RequestInfoImpl(), executor, applier); in credentialsFailsWithRuntimeException()
226 GoogleAuthLibraryCallCredentials callCredentials = in credentialsReturnNullMetadata() local
229 callCredentials.applyRequestMetadata(new RequestInfoImpl(), 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()