Home | History | Annotate | Download | only in android

Lines Matching defs:port_name

816     const char* port_name = strchr(host_and_port, ':');
817 if (port_name != NULL) {
818 int to_copy = MIN(sizeof(host_name)-1, port_name - host_and_port);
823 port_name++;
828 port_name = host_and_port;
830 // Make sure that port_name is not empty.
831 if (port_name[0] == '\0') {
834 return sock_address_list_create(actual_host_name, port_name, flags);