Lines Matching refs:arg4

144 static int php_do_mcast_opt(php_socket *php_sock, int level, int optname, zval *arg4)  in php_do_mcast_opt()  argument
167 convert_to_array_ex(arg4); in php_do_mcast_opt()
168 opt_ht = Z_ARRVAL_P(arg4); in php_do_mcast_opt()
203 convert_to_array_ex(arg4); in php_do_mcast_opt()
204 opt_ht = Z_ARRVAL_P(arg4); in php_do_mcast_opt()
243 zval *arg4) in php_do_setsockopt_ip_mcast() argument
261 if (php_do_mcast_opt(php_sock, level, optname, arg4) == FAILURE) { in php_do_setsockopt_ip_mcast()
268 if (php_get_if_index_from_zval(arg4, &if_index) == FAILURE) { in php_do_setsockopt_ip_mcast()
280 convert_to_boolean_ex(arg4); in php_do_setsockopt_ip_mcast()
281 ipv4_mcast_ttl_lback = (unsigned char) (Z_TYPE_P(arg4) == IS_TRUE); in php_do_setsockopt_ip_mcast()
285 convert_to_long_ex(arg4); in php_do_setsockopt_ip_mcast()
286 if (Z_LVAL_P(arg4) < 0L || Z_LVAL_P(arg4) > 255L) { in php_do_setsockopt_ip_mcast()
291 ipv4_mcast_ttl_lback = (unsigned char) Z_LVAL_P(arg4); in php_do_setsockopt_ip_mcast()
313 zval *arg4) in php_do_setsockopt_ipv6_mcast() argument
330 if (php_do_mcast_opt(php_sock, level, optname, arg4) == FAILURE) { in php_do_setsockopt_ipv6_mcast()
337 if (php_get_if_index_from_zval(arg4, &if_index) == FAILURE) { in php_do_setsockopt_ipv6_mcast()
346 convert_to_boolean_ex(arg4); in php_do_setsockopt_ipv6_mcast()
347 ov = (int) Z_TYPE_P(arg4) == IS_TRUE; in php_do_setsockopt_ipv6_mcast()
350 convert_to_long_ex(arg4); in php_do_setsockopt_ipv6_mcast()
351 if (Z_LVAL_P(arg4) < -1L || Z_LVAL_P(arg4) > 255L) { in php_do_setsockopt_ipv6_mcast()
356 ov = (int) Z_LVAL_P(arg4); in php_do_setsockopt_ipv6_mcast()