Home | History | Annotate | Download | only in qemu

Lines Matching defs:port_name

814     const char* port_name = strchr(host_and_port, ':');
815 if (port_name != NULL) {
816 int to_copy = MIN(sizeof(host_name)-1, port_name - host_and_port);
821 port_name++;
826 port_name = host_and_port;
828 // Make sure that port_name is not empty.
829 if (port_name[0] == '\0') {
832 return sock_address_list_create(actual_host_name, port_name, flags);