/third_party/grpc/src/core/lib/security/credentials/composite/ |
D | composite_credentials.cc | 155 grpc_core::RefCountedPtr<grpc_call_credentials> creds2) in grpc_composite_call_credentials() argument 160 strcmp(creds2->type(), GRPC_CALL_CREDENTIALS_TYPE_COMPOSITE) == 0; in grpc_composite_call_credentials() 162 get_creds_array_size(creds2.get(), creds2_is_composite); in grpc_composite_call_credentials() 165 push_to_inner(std::move(creds2), creds2_is_composite); in grpc_composite_call_credentials() 178 grpc_core::RefCountedPtr<grpc_call_credentials> creds2) { in composite_call_credentials_create() argument 180 std::move(creds1), std::move(creds2)); in composite_call_credentials_create() 184 grpc_call_credentials* creds1, grpc_call_credentials* creds2, in grpc_composite_call_credentials_create() argument 189 3, (creds1, creds2, reserved)); in grpc_composite_call_credentials_create() 192 GPR_ASSERT(creds2 != nullptr); in grpc_composite_call_credentials_create() 194 return composite_call_credentials_create(creds1->Ref(), creds2->Ref()) in grpc_composite_call_credentials_create()
|
D | composite_credentials.h | 79 grpc_core::RefCountedPtr<grpc_call_credentials> creds2);
|
/third_party/grpc/src/ruby/spec/ |
D | call_credentials_spec.rb | 31 creds2 = CallCredentials.new(auth_proc) 32 expect { creds1.compose creds2 }.not_to raise_error 37 creds2 = CallCredentials.new(auth_proc) 39 expect { creds1.compose(creds2, creds3) }.not_to raise_error
|
/third_party/grpc/src/csharp/Grpc.Core/Internal/ |
D | CallCredentialsSafeHandle.cs | 34 …tialsSafeHandle CreateComposite(CallCredentialsSafeHandle creds1, CallCredentialsSafeHandle creds2) in CreateComposite() argument 36 return Native.grpcsharp_composite_call_credentials_create(creds1, creds2); in CreateComposite()
|
D | NativeMethods.Generated.cs | 927 …ll_credentials_create_delegate(CallCredentialsSafeHandle creds1, CallCredentialsSafeHandle creds2); in grpcsharp_composite_call_credentials_create_delegate() argument 1085 …posite_call_credentials_create(CallCredentialsSafeHandle creds1, CallCredentialsSafeHandle creds2); in grpcsharp_composite_call_credentials_create() argument 1405 …posite_call_credentials_create(CallCredentialsSafeHandle creds1, CallCredentialsSafeHandle creds2); in grpcsharp_composite_call_credentials_create() argument 1725 …posite_call_credentials_create(CallCredentialsSafeHandle creds1, CallCredentialsSafeHandle creds2); in grpcsharp_composite_call_credentials_create() argument 2045 …posite_call_credentials_create(CallCredentialsSafeHandle creds1, CallCredentialsSafeHandle creds2); in grpcsharp_composite_call_credentials_create() argument 2365 …posite_call_credentials_create(CallCredentialsSafeHandle creds1, CallCredentialsSafeHandle creds2); in grpcsharp_composite_call_credentials_create() argument 2685 …posite_call_credentials_create(CallCredentialsSafeHandle creds1, CallCredentialsSafeHandle creds2); in grpcsharp_composite_call_credentials_create() argument
|
/third_party/grpc/src/php/tests/unit_tests/ |
D | ChannelTest.php | 373 $creds2, argument 385 ["credentials" => $creds2] 458 $creds2, argument 471 ["credentials" => $creds2] 614 $creds2 = Grpc\ChannelCredentials::createComposite( 628 ["credentials" => $creds2]);
|
/third_party/grpc/include/grpcpp/security/ |
D | credentials_impl.h | 127 const std::shared_ptr<CallCredentials>& creds2); 228 const std::shared_ptr<CallCredentials>& creds2);
|
D | credentials.h | 144 const std::shared_ptr<CallCredentials>& creds2); 245 const std::shared_ptr<CallCredentials>& creds2);
|
/third_party/grpc/src/csharp/Grpc.IntegrationTesting/ |
D | SslCredentialsTest.cs | 178 var creds2 = new SslServerCredentials(new[] { keyCertPair }, rootCert, false); in Constructor_LegacyForceClientAuth() 179 … Assert.AreEqual(SslClientCertificateRequestType.DontRequest, creds2.ClientCertificateRequest); in Constructor_LegacyForceClientAuth()
|
/third_party/grpc/src/php/ext/grpc/ |
D | call_credentials.c | 230 ZEND_ARG_INFO(0, creds2)
|
/third_party/grpc/src/cpp/client/ |
D | secure_credentials.cc | 384 const std::shared_ptr<CallCredentials>& creds2) { in CompositeCallCredentials() argument 386 SecureCallCredentials* s_creds2 = creds2->AsSecureCredentials(); in CompositeCallCredentials()
|
/third_party/grpc/include/grpc/ |
D | grpc_security.h | 312 grpc_call_credentials* creds1, grpc_call_credentials* creds2,
|
/third_party/grpc/templates/src/csharp/Grpc.Core/Internal/ |
D | native_methods.include | 25 …osite_call_credentials_create(CallCredentialsSafeHandle creds1, CallCredentialsSafeHandle creds2)',
|
/third_party/grpc/src/python/grpcio/grpc/_cython/_cygrpc/ |
D | grpc.pxi | 523 grpc_channel_credentials *creds1, grpc_call_credentials *creds2, 538 grpc_call_credentials *creds1, grpc_call_credentials *creds2,
|
/third_party/grpc/src/csharp/ext/ |
D | grpc_csharp_ext.c | 1124 grpc_call_credentials* creds2) { in grpcsharp_composite_call_credentials_create() argument 1125 return grpc_composite_call_credentials_create(creds1, creds2, NULL); in grpcsharp_composite_call_credentials_create()
|
/third_party/grpc/test/cpp/end2end/ |
D | end2end_test.cc | 1888 std::shared_ptr<CallCredentials> creds2 = in TEST_P() local 1890 context.set_credentials(creds2); in TEST_P() 1891 EXPECT_EQ(context.credentials(), creds2); in TEST_P()
|
/third_party/grpc/src/ruby/ext/grpc/ |
D | rb_grpc_imports.generated.h | 365 …entials_create_type)(grpc_call_credentials* creds1, grpc_call_credentials* creds2, void* reserved);
|