Lines Matching refs:port
189 long port; in php_url_parse_ex() local
192 port = strtol(port_buf, NULL, 10); in php_url_parse_ex()
193 if (port > 0 && port <= 65535) { in php_url_parse_ex()
194 ret->port = (unsigned short) port; in php_url_parse_ex()
270 if (!ret->port) { in php_url_parse_ex()
279 long port; in php_url_parse_ex() local
282 port = strtol(port_buf, NULL, 10); in php_url_parse_ex()
283 if (port > 0 && port <= 65535) { in php_url_parse_ex()
284 ret->port = (unsigned short)port; in php_url_parse_ex()
397 if (resource->port != 0) RETVAL_LONG(resource->port); in PHP_FUNCTION()
429 if (resource->port != 0) in PHP_FUNCTION()
430 add_assoc_long(return_value, "port", resource->port); in PHP_FUNCTION()