Home
last modified time | relevance | path

Searched refs:creds2 (Results 1 – 15 of 15) sorted by relevance

/external/grpc-grpc/src/ruby/spec/
Dcall_credentials_spec.rb31 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
/external/grpc-grpc/src/php/tests/unit_tests/
DChannelTest.php288 $creds2 = Grpc\ChannelCredentials::createSsl();
295 ["credentials" => $creds2]);
313 $creds2 = Grpc\ChannelCredentials::createSsl(
321 ["credentials" => $creds2]);
340 $creds2 = Grpc\ChannelCredentials::createSsl(
348 ["credentials" => $creds2]);
366 $creds2 = Grpc\ChannelCredentials::createInsecure();
373 ["credentials" => $creds2]);
517 $creds2 = Grpc\ChannelCredentials::createComposite(
531 ["credentials" => $creds2]);
/external/grpc-grpc/src/csharp/Grpc.Core/Internal/
DCallCredentialsSafeHandle.cs34 …tialsSafeHandle CreateComposite(CallCredentialsSafeHandle creds1, CallCredentialsSafeHandle creds2) in CreateComposite() argument
36 return Native.grpcsharp_composite_call_credentials_create(creds1, creds2); in CreateComposite()
DNativeMethods.Generated.cs458 …ll_credentials_create_delegate(CallCredentialsSafeHandle creds1, CallCredentialsSafeHandle creds2); in grpcsharp_composite_call_credentials_create_delegate() argument
605 …posite_call_credentials_create(CallCredentialsSafeHandle creds1, CallCredentialsSafeHandle creds2); in grpcsharp_composite_call_credentials_create() argument
898 …posite_call_credentials_create(CallCredentialsSafeHandle creds1, CallCredentialsSafeHandle creds2); in grpcsharp_composite_call_credentials_create() argument
/external/grpc-grpc/src/core/lib/security/credentials/composite/
Dcomposite_credentials.cc139 grpc_call_credentials* creds1, grpc_call_credentials* creds2, in grpc_composite_call_credentials_create() argument
149 3, (creds1, creds2, reserved)); in grpc_composite_call_credentials_create()
152 GPR_ASSERT(creds2 != nullptr); in grpc_composite_call_credentials_create()
159 creds2_array = get_creds_array(&creds2); in grpc_composite_call_credentials_create()
/external/grpc-grpc/include/grpcpp/security/
Dcredentials.h88 const std::shared_ptr<CallCredentials>& creds2);
190 const std::shared_ptr<CallCredentials>& creds2);
/external/grpc-grpc/src/cpp/client/
Dsecure_credentials.cc187 const std::shared_ptr<CallCredentials>& creds2) { in CompositeCallCredentials() argument
189 SecureCallCredentials* s_creds2 = creds2->AsSecureCredentials(); in CompositeCallCredentials()
/external/grpc-grpc/src/php/ext/grpc/
Dcall_credentials.c239 ZEND_ARG_INFO(0, creds2)
/external/grpc-grpc/include/grpc/
Dgrpc_security.h227 grpc_call_credentials* creds1, grpc_call_credentials* creds2,
/external/python/oauth2client/tests/
Dtest_client.py794 creds2 = client.GoogleCredentials.from_json(json)
796 self.assertEqual(creds.__dict__, creds2.__dict__)
803 creds2 = client.GoogleCredentials.from_json(creds1.to_json())
807 creds2_vals = creds2.__dict__
817 creds2 = client.GoogleCredentials.from_json(creds1.to_json())
821 creds2_vals = creds2.__dict__
/external/grpc-grpc/src/python/grpcio/grpc/_cython/_cygrpc/
Dgrpc.pxi478 grpc_channel_credentials *creds1, grpc_call_credentials *creds2,
483 grpc_call_credentials *creds1, grpc_call_credentials *creds2,
/external/grpc-grpc/src/csharp/ext/
Dgrpc_csharp_ext.c1012 grpc_call_credentials* creds2) { in grpcsharp_composite_call_credentials_create() argument
1013 return grpc_composite_call_credentials_create(creds1, creds2, NULL); in grpcsharp_composite_call_credentials_create()
/external/grpc-grpc/templates/src/csharp/Grpc.Core/Internal/
DNativeMethods.Generated.cs.template26 …osite_call_credentials_create(CallCredentialsSafeHandle creds1, CallCredentialsSafeHandle creds2)',
/external/grpc-grpc/test/cpp/end2end/
Dend2end_test.cc1560 std::shared_ptr<CallCredentials> creds2 = in TEST_P() local
1562 context.set_credentials(creds2); in TEST_P()
/external/grpc-grpc/src/ruby/ext/grpc/
Drb_grpc_imports.generated.h347 …entials_create_type)(grpc_call_credentials* creds1, grpc_call_credentials* creds2, void* reserved);