Home
last modified time | relevance | path

Searched refs:address_str (Results 1 – 4 of 4) sorted by relevance

/third_party/grpc/test/core/iomgr/
Dstranded_event_test.cc292 for (const auto& address_str : addresses) { in BuildResolverResponse() local
293 grpc_uri* uri = grpc_uri_parse(address_str.c_str(), true); in BuildResolverResponse()
295 gpr_log(GPR_ERROR, "Failed to parse uri:%s", address_str.c_str()); in BuildResolverResponse()
/third_party/gstreamer/gstplugins_good/gst/rtpmanager/
Drtpsource.c374 gchar *address_str; in rtp_source_create_stats() local
405 address_str = __g_socket_address_to_string (src->rtp_from); in rtp_source_create_stats()
406 gst_structure_set (s, "rtp-from", G_TYPE_STRING, address_str, NULL); in rtp_source_create_stats()
407 g_free (address_str); in rtp_source_create_stats()
410 address_str = __g_socket_address_to_string (src->rtcp_from); in rtp_source_create_stats()
411 gst_structure_set (s, "rtcp-from", G_TYPE_STRING, address_str, NULL); in rtp_source_create_stats()
412 g_free (address_str); in rtp_source_create_stats()
/third_party/grpc/src/core/ext/filters/client_channel/xds/
Dxds_api.cc1591 char* address_str = static_cast<char*>(gpr_malloc(address_strview.size + 1)); in ServerAddressParseAndAppend() local
1592 memcpy(address_str, address_strview.data, address_strview.size); in ServerAddressParseAndAppend()
1593 address_str[address_strview.size] = '\0'; in ServerAddressParseAndAppend()
1594 grpc_string_to_sockaddr(&addr, address_str, port); in ServerAddressParseAndAppend()
1595 gpr_free(address_str); in ServerAddressParseAndAppend()
/third_party/grpc/src/core/ext/xds/
Dxds_api.cc1976 std::string address_str = UpbStringToStdString( in ServerAddressParseAndAppend() local
1984 grpc_string_to_sockaddr(&addr, address_str.c_str(), port); in ServerAddressParseAndAppend()