Lines Matching refs:protocol
1076 zend_long domain, type, protocol; local
1079 if (zend_parse_parameters(ZEND_NUM_ARGS(), "lll", &domain, &type, &protocol) == FAILURE) {
1101 php_sock->bsd_socket = socket(domain, type, protocol);
1990 zend_long domain, type, protocol; local
1992 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "lllz", &domain, &type, &protocol, &fds_array_zval) == …
2017 if (socketpair(domain, type, protocol, fds_array) != 0) {
2211 const char *protocol = NULL; local
2247 protocol = "tcp://";
2251 protocol = "udp://";
2262 protocol = "unix://";
2265 protocol = "udg://";
2274 if (protocol != NULL) {
2275 stream = php_stream_xport_create(protocol, protocollen, 0, 0, NULL, NULL, NULL, NULL, NULL);