HomeSort by relevance Sort by last modified time
    Searched refs:handshaker_service_url (Results 1 - 8 of 8) sorted by null

  /external/grpc-grpc/src/core/lib/security/credentials/alts/
alts_credentials.h 33 char* handshaker_service_url; member in struct:grpc_alts_credentials
40 char* handshaker_service_url; member in struct:grpc_alts_server_credentials
48 * - handshaker_service_url: address of ALTS handshaker service in the format of
61 const char* handshaker_service_url, bool enable_untrusted_alts);
68 * - handshaker_service_url: address of ALTS handshaker service in the format of
80 const char* handshaker_service_url, bool enable_untrusted_alts);
alts_credentials.cc 40 gpr_free(alts_creds->handshaker_service_url);
47 gpr_free(alts_creds->handshaker_service_url);
73 const char* handshaker_service_url, bool enable_untrusted_alts) {
80 creds->handshaker_service_url =
81 handshaker_service_url == nullptr
83 : gpr_strdup(handshaker_service_url);
92 const char* handshaker_service_url, bool enable_untrusted_alts) {
99 creds->handshaker_service_url =
100 handshaker_service_url == nullptr
102 : gpr_strdup(handshaker_service_url);
    [all...]
  /external/grpc-grpc/src/core/tsi/alts/handshaker/
alts_tsi_handshaker.h 50 * - handshaker_service_url: address of ALTS handshaker service in the format of
61 const char* handshaker_service_url, bool is_client, tsi_handshaker** self);
alts_handshaker_client.h 124 * - handshaker_service_url: address of ALTS handshaker service in the format of
132 const char* handshaker_service_url);
alts_tsi_handshaker.cc 333 static void init_shared_resources(const char* handshaker_service_url) {
334 GPR_ASSERT(handshaker_service_url != nullptr);
339 grpc_insecure_channel_create(handshaker_service_url, nullptr, nullptr);
350 const char* handshaker_service_url, bool is_client, tsi_handshaker** self) {
351 if (handshaker_service_url == nullptr || self == nullptr ||
356 init_shared_resources(handshaker_service_url);
358 kSharedResource->channel, kSharedResource->cq, handshaker_service_url);
alts_handshaker_client.cc 247 const char* handshaker_service_url) {
249 handshaker_service_url == nullptr) {
256 grpc_slice slice = grpc_slice_from_copied_string(handshaker_service_url);
  /external/grpc-grpc/test/core/security/
alts_credentials_fuzzer.cc 78 char* handshaker_service_url = local
88 options, handshaker_service_url, enable_untrusted_alts);
102 options, handshaker_service_url, enable_untrusted_alts);
111 gpr_free(handshaker_service_url);
  /external/grpc-grpc/src/core/lib/security/security_connector/
alts_security_connector.cc 74 creds->handshaker_service_url, true,
88 creds->handshaker_service_url, false,

Completed in 191 milliseconds