Lines Matching refs:port_str
87 char *port_str;
113 port_str = strchr(addr_str, ']');
114 if (!port_str) {
121 *port_str = '\0';
122 port_str++;
124 if (*port_str == ':') {
126 port_str++;
127 } else if (*port_str == '\0') {
129 port_str = NULL;
136 port_str = strchr(addr_str, ':');
137 if (port_str) {
138 *port_str = '\0';
139 port_str++;
144 if (port_str) {
146 if (ddi_strtol(port_str, NULL, 10, &tmp_port) != 0) {
150 tmp_port = strtol(port_str, &errchr, 10);