Home
last modified time | relevance | path

Searched refs:handshaker_service_url (Results 1 – 18 of 18) sorted by relevance

/external/rust/crates/grpcio-sys/grpc/src/core/lib/security/credentials/alts/
Dalts_credentials.cc38 const char* handshaker_service_url) in grpc_alts_credentials() argument
41 handshaker_service_url_(handshaker_service_url == nullptr in grpc_alts_credentials()
43 : gpr_strdup(handshaker_service_url)) { in grpc_alts_credentials()
63 const char* handshaker_service_url) in grpc_alts_server_credentials() argument
66 handshaker_service_url_(handshaker_service_url == nullptr in grpc_alts_server_credentials()
68 : gpr_strdup(handshaker_service_url)) { in grpc_alts_server_credentials()
84 const char* handshaker_service_url, bool enable_untrusted_alts) { in grpc_alts_credentials_create_customized() argument
88 return new grpc_alts_credentials(options, handshaker_service_url); in grpc_alts_credentials_create_customized()
93 const char* handshaker_service_url, bool enable_untrusted_alts) { in grpc_alts_server_credentials_create_customized() argument
97 return new grpc_alts_server_credentials(options, handshaker_service_url); in grpc_alts_server_credentials_create_customized()
Dalts_credentials.h33 const char* handshaker_service_url);
44 const char* handshaker_service_url() const { return handshaker_service_url_; } in handshaker_service_url() function
55 const char* handshaker_service_url);
63 const char* handshaker_service_url() const { return handshaker_service_url_; } in handshaker_service_url() function
88 const char* handshaker_service_url, bool enable_untrusted_alts);
107 const char* handshaker_service_url, bool enable_untrusted_alts);
/external/grpc-grpc/src/core/lib/security/credentials/alts/
Dalts_credentials.cc40 gpr_free(alts_creds->handshaker_service_url); in alts_credentials_destruct()
47 gpr_free(alts_creds->handshaker_service_url); in alts_server_credentials_destruct()
73 const char* handshaker_service_url, bool enable_untrusted_alts) { in grpc_alts_credentials_create_customized() argument
80 creds->handshaker_service_url = in grpc_alts_credentials_create_customized()
81 handshaker_service_url == nullptr in grpc_alts_credentials_create_customized()
83 : gpr_strdup(handshaker_service_url); in grpc_alts_credentials_create_customized()
92 const char* handshaker_service_url, bool enable_untrusted_alts) { in grpc_alts_server_credentials_create_customized() argument
99 creds->handshaker_service_url = in grpc_alts_server_credentials_create_customized()
100 handshaker_service_url == nullptr in grpc_alts_server_credentials_create_customized()
102 : gpr_strdup(handshaker_service_url); in grpc_alts_server_credentials_create_customized()
Dalts_credentials.h33 char* handshaker_service_url; member
40 char* handshaker_service_url; member
61 const char* handshaker_service_url, bool enable_untrusted_alts);
80 const char* handshaker_service_url, bool enable_untrusted_alts);
/external/rust/crates/grpcio-sys/grpc/test/core/security/
Dalts_credentials_fuzzer.cc73 char* handshaker_service_url = in LLVMFuzzerTestOneInput() local
83 options, handshaker_service_url, enable_untrusted_alts); in LLVMFuzzerTestOneInput()
97 options, handshaker_service_url, enable_untrusted_alts); in LLVMFuzzerTestOneInput()
106 gpr_free(handshaker_service_url); in LLVMFuzzerTestOneInput()
/external/grpc-grpc/test/core/security/
Dalts_credentials_fuzzer.cc78 char* handshaker_service_url = in LLVMFuzzerTestOneInput() local
88 options, handshaker_service_url, enable_untrusted_alts); in LLVMFuzzerTestOneInput()
102 options, handshaker_service_url, enable_untrusted_alts); in LLVMFuzzerTestOneInput()
111 gpr_free(handshaker_service_url); in LLVMFuzzerTestOneInput()
/external/rust/crates/grpcio-sys/grpc/src/core/tsi/alts/handshaker/
Dalts_tsi_handshaker.cc53 char* handshaker_service_url; member
411 handshaker->handshaker_service_url); in alts_tsi_handshaker_continue_handshaker_next()
424 handshaker, channel, handshaker->handshaker_service_url, in alts_tsi_handshaker_continue_handshaker_next()
490 next_args->handshaker->handshaker_service_url, nullptr, nullptr); in alts_tsi_handshaker_create_channel()
594 gpr_free(handshaker->handshaker_service_url); in handshaker_destroy()
623 const char* handshaker_service_url, bool is_client, in alts_tsi_handshaker_create() argument
626 if (handshaker_service_url == nullptr || self == nullptr || in alts_tsi_handshaker_create()
643 handshaker->handshaker_service_url = gpr_strdup(handshaker_service_url); in alts_tsi_handshaker_create()
Dalts_shared_resource.cc55 const char* handshaker_service_url) { in grpc_alts_shared_resource_dedicated_start() argument
59 grpc_insecure_channel_create(handshaker_service_url, nullptr, nullptr); in grpc_alts_shared_resource_dedicated_start()
Dalts_shared_resource.h70 const char* handshaker_service_url);
Dalts_tsi_handshaker.h71 const char* handshaker_service_url, bool is_client,
Dalts_handshaker_client.h144 const char* handshaker_service_url, grpc_pollset_set* interested_parties,
Dalts_handshaker_client.cc689 const char* handshaker_service_url, grpc_pollset_set* interested_parties, in alts_grpc_handshaker_client_create() argument
694 if (channel == nullptr || handshaker_service_url == nullptr) { in alts_grpc_handshaker_client_create()
716 grpc_slice slice = grpc_slice_from_copied_string(handshaker_service_url); in alts_grpc_handshaker_client_create()
718 strcmp(handshaker_service_url, ALTS_HANDSHAKER_SERVICE_URL_FOR_TESTING) == in alts_grpc_handshaker_client_create()
/external/grpc-grpc/src/core/tsi/alts/handshaker/
Dalts_tsi_handshaker.cc333 static void init_shared_resources(const char* handshaker_service_url) { in init_shared_resources() argument
334 GPR_ASSERT(handshaker_service_url != nullptr); in init_shared_resources()
339 grpc_insecure_channel_create(handshaker_service_url, nullptr, nullptr); in init_shared_resources()
350 const char* handshaker_service_url, bool is_client, tsi_handshaker** self) { in alts_tsi_handshaker_create() argument
351 if (handshaker_service_url == nullptr || self == nullptr || in alts_tsi_handshaker_create()
356 init_shared_resources(handshaker_service_url); in alts_tsi_handshaker_create()
358 kSharedResource->channel, kSharedResource->cq, handshaker_service_url); in alts_tsi_handshaker_create()
Dalts_tsi_handshaker.h61 const char* handshaker_service_url, bool is_client, tsi_handshaker** self);
Dalts_handshaker_client.cc247 const char* handshaker_service_url) { in alts_grpc_handshaker_client_create() argument
249 handshaker_service_url == nullptr) { in alts_grpc_handshaker_client_create()
256 grpc_slice slice = grpc_slice_from_copied_string(handshaker_service_url); in alts_grpc_handshaker_client_create()
Dalts_handshaker_client.h132 const char* handshaker_service_url);
/external/rust/crates/grpcio-sys/grpc/src/core/lib/security/security_connector/alts/
Dalts_security_connector.cc94 creds->handshaker_service_url(), true, interested_parties, in add_handshakers()
158 creds->options(), nullptr, creds->handshaker_service_url(), in add_handshakers()
/external/grpc-grpc/src/core/lib/security/security_connector/
Dalts_security_connector.cc74 creds->handshaker_service_url, true, in alts_channel_add_handshakers()
88 creds->handshaker_service_url, false, in alts_server_add_handshakers()