Lines Matching refs:arg4

150 static int php_do_mcast_opt(php_socket *php_sock, int level, int optname, zval *arg4)  in php_do_mcast_opt()  argument
173 convert_to_array_ex(arg4); in php_do_mcast_opt()
174 opt_ht = Z_ARRVAL_P(arg4); in php_do_mcast_opt()
209 convert_to_array_ex(arg4); in php_do_mcast_opt()
210 opt_ht = Z_ARRVAL_P(arg4); in php_do_mcast_opt()
249 zval *arg4) in php_do_setsockopt_ip_mcast() argument
267 if (php_do_mcast_opt(php_sock, level, optname, arg4) == FAILURE) { in php_do_setsockopt_ip_mcast()
274 if (php_get_if_index_from_zval(arg4, &if_index) == FAILURE) { in php_do_setsockopt_ip_mcast()
286 convert_to_boolean_ex(arg4); in php_do_setsockopt_ip_mcast()
287 ipv4_mcast_ttl_lback = (unsigned char) (Z_TYPE_P(arg4) == IS_TRUE); in php_do_setsockopt_ip_mcast()
291 convert_to_long_ex(arg4); in php_do_setsockopt_ip_mcast()
292 if (Z_LVAL_P(arg4) < 0L || Z_LVAL_P(arg4) > 255L) { in php_do_setsockopt_ip_mcast()
297 ipv4_mcast_ttl_lback = (unsigned char) Z_LVAL_P(arg4); in php_do_setsockopt_ip_mcast()
319 zval *arg4) in php_do_setsockopt_ipv6_mcast() argument
336 if (php_do_mcast_opt(php_sock, level, optname, arg4) == FAILURE) { in php_do_setsockopt_ipv6_mcast()
343 if (php_get_if_index_from_zval(arg4, &if_index) == FAILURE) { in php_do_setsockopt_ipv6_mcast()
352 convert_to_boolean_ex(arg4); in php_do_setsockopt_ipv6_mcast()
353 ov = (int) Z_TYPE_P(arg4) == IS_TRUE; in php_do_setsockopt_ipv6_mcast()
356 convert_to_long_ex(arg4); in php_do_setsockopt_ipv6_mcast()
357 if (Z_LVAL_P(arg4) < -1L || Z_LVAL_P(arg4) > 255L) { in php_do_setsockopt_ipv6_mcast()
362 ov = (int) Z_LVAL_P(arg4); in php_do_setsockopt_ipv6_mcast()