Searched refs:target_uri (Results 1 – 7 of 7) sorted by relevance
/external/grpc-grpc/src/core/ext/transport/chttp2/client/secure/ |
D | secure_channel_create.cc | 81 grpc_uri* target_uri = in get_secure_naming_subchannel_args() local 83 GPR_ASSERT(target_uri != nullptr); in get_secure_naming_subchannel_args() 84 if (target_uri->path[0] != '\0') { // "path" may be empty in get_secure_naming_subchannel_args() 86 target_uri->path[0] == '/' ? target_uri->path + 1 : target_uri->path); in get_secure_naming_subchannel_args() 92 grpc_uri_destroy(target_uri); in get_secure_naming_subchannel_args()
|
/external/rust/crates/grpcio-sys/grpc/src/core/ext/filters/client_channel/lb_policy/grpclb/ |
D | grpclb_channel_secure.cc | 68 grpc_channel* CreateGrpclbBalancerChannel(const char* target_uri, in CreateGrpclbBalancerChannel() argument 74 return grpc_insecure_channel_create(target_uri, &args, nullptr); in CreateGrpclbBalancerChannel() 80 grpc_secure_channel_create(creds, target_uri, new_args, nullptr); in CreateGrpclbBalancerChannel()
|
D | grpclb_channel.cc | 32 grpc_channel* CreateGrpclbBalancerChannel(const char* target_uri, in CreateGrpclbBalancerChannel() argument 34 return grpc_insecure_channel_create(target_uri, &args, nullptr); in CreateGrpclbBalancerChannel()
|
D | grpclb_channel.h | 39 grpc_channel* CreateGrpclbBalancerChannel(const char* target_uri,
|
/external/grpc-grpc/src/core/lib/iomgr/ |
D | tcp_client_windows.cc | 215 char* target_uri = grpc_sockaddr_to_uri(addr); in tcp_connect() local 219 GRPC_ERROR_STR_TARGET_ADDRESS, grpc_slice_from_copied_string(target_uri)); in tcp_connect()
|
/external/rust/crates/grpcio-sys/grpc/src/core/lib/iomgr/ |
D | tcp_client_windows.cc | 215 std::string target_uri = grpc_sockaddr_to_uri(addr); in tcp_connect() local 220 grpc_slice_from_cpp_string(std::move(target_uri))); in tcp_connect()
|
/external/grpc-grpc/test/core/end2end/fuzzers/ |
D | api_fuzzer.cc | 792 char* target_uri; in LLVMFuzzerTestOneInput() local 793 gpr_asprintf(&target_uri, "dns:%s", target); in LLVMFuzzerTestOneInput() 795 g_channel = grpc_insecure_channel_create(target_uri, args, nullptr); in LLVMFuzzerTestOneInput() 801 gpr_free(target_uri); in LLVMFuzzerTestOneInput() 1161 char* target_uri; in LLVMFuzzerTestOneInput() local 1162 gpr_asprintf(&target_uri, "dns:%s", target); in LLVMFuzzerTestOneInput() 1166 grpc_secure_channel_create(creds, target_uri, args, nullptr); in LLVMFuzzerTestOneInput() 1172 gpr_free(target_uri); in LLVMFuzzerTestOneInput()
|