Lines Matching refs:arg4
148 static int php_do_mcast_opt(php_socket *php_sock, int level, int optname, zval **arg4 TSRMLS_DC) in php_do_mcast_opt()
171 convert_to_array_ex(arg4); in php_do_mcast_opt()
172 opt_ht = HASH_OF(*arg4); in php_do_mcast_opt()
207 convert_to_array_ex(arg4); in php_do_mcast_opt()
208 opt_ht = HASH_OF(*arg4); in php_do_mcast_opt()
247 zval **arg4 TSRMLS_DC) in php_do_setsockopt_ip_mcast()
265 if (php_do_mcast_opt(php_sock, level, optname, arg4 TSRMLS_CC) == FAILURE) { in php_do_setsockopt_ip_mcast()
272 if (php_get_if_index_from_zval(*arg4, &if_index TSRMLS_CC) == FAILURE) { in php_do_setsockopt_ip_mcast()
284 convert_to_boolean_ex(arg4); in php_do_setsockopt_ip_mcast()
288 convert_to_long_ex(arg4); in php_do_setsockopt_ip_mcast()
289 if (Z_LVAL_PP(arg4) < 0L || Z_LVAL_PP(arg4) > 255L) { in php_do_setsockopt_ip_mcast()
295 ipv4_mcast_ttl_lback = (unsigned char) Z_LVAL_PP(arg4); in php_do_setsockopt_ip_mcast()
316 zval **arg4 TSRMLS_DC) in php_do_setsockopt_ipv6_mcast()
333 if (php_do_mcast_opt(php_sock, level, optname, arg4 TSRMLS_CC) == FAILURE) { in php_do_setsockopt_ipv6_mcast()
340 if (php_get_if_index_from_zval(*arg4, &if_index TSRMLS_CC) == FAILURE) { in php_do_setsockopt_ipv6_mcast()
349 convert_to_boolean_ex(arg4); in php_do_setsockopt_ipv6_mcast()
352 convert_to_long_ex(arg4); in php_do_setsockopt_ipv6_mcast()
353 if (Z_LVAL_PP(arg4) < -1L || Z_LVAL_PP(arg4) > 255L) { in php_do_setsockopt_ipv6_mcast()
359 ov = (int) Z_LVAL_PP(arg4); in php_do_setsockopt_ipv6_mcast()