Lines Matching refs:op

681 static void php_filter_array_handler(zval *input, zval **op, zval *return_value, zend_bool add_empt…  in php_filter_array_handler()  argument
689 if (!op) { in php_filter_array_handler()
693 } else if (Z_TYPE_PP(op) == IS_LONG) { in php_filter_array_handler()
696 php_filter_call(&return_value, Z_LVAL_PP(op), NULL, 0, FILTER_REQUIRE_ARRAY TSRMLS_CC); in php_filter_array_handler()
697 } else if (Z_TYPE_PP(op) == IS_ARRAY) { in php_filter_array_handler()
700 zend_hash_internal_pointer_reset(Z_ARRVAL_PP(op)); in php_filter_array_handler()
701 for (zend_hash_internal_pointer_reset_ex(Z_ARRVAL_PP(op), &pos); in php_filter_array_handler()
702 zend_hash_get_current_data_ex(Z_ARRVAL_PP(op), (void **) &arg_elm, &pos) == SUCCESS; in php_filter_array_handler()
703 zend_hash_move_forward_ex(Z_ARRVAL_PP(op), &pos)) in php_filter_array_handler()
705 …if (zend_hash_get_current_key_ex(Z_ARRVAL_PP(op), &arg_key, &arg_key_len, &index, 0, &pos) != HASH… in php_filter_array_handler()
821 zval *array_input = NULL, **op = NULL; in PHP_FUNCTION() local
824 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l|Zb", &fetch_from, &op, &add_empty) == FAI… in PHP_FUNCTION()
828 if (op in PHP_FUNCTION()
829 && (Z_TYPE_PP(op) != IS_ARRAY) in PHP_FUNCTION()
830 && (Z_TYPE_PP(op) == IS_LONG && !PHP_FILTER_ID_EXISTS(Z_LVAL_PP(op))) in PHP_FUNCTION()
840 if (op) { in PHP_FUNCTION()
841 if (Z_TYPE_PP(op) == IS_LONG) { in PHP_FUNCTION()
842 filter_flags = Z_LVAL_PP(op); in PHP_FUNCTION()
843 …} else if (Z_TYPE_PP(op) == IS_ARRAY && zend_hash_find(HASH_OF(*op), "flags", sizeof("flags"), (vo… in PHP_FUNCTION()
860 php_filter_array_handler(array_input, op, return_value, add_empty TSRMLS_CC); in PHP_FUNCTION()
869 zval *array_input = NULL, **op = NULL; in PHP_FUNCTION() local
872 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a|Zb", &array_input, &op, &add_empty) == FA… in PHP_FUNCTION()
876 if (op in PHP_FUNCTION()
877 && (Z_TYPE_PP(op) != IS_ARRAY) in PHP_FUNCTION()
878 && (Z_TYPE_PP(op) == IS_LONG && !PHP_FILTER_ID_EXISTS(Z_LVAL_PP(op))) in PHP_FUNCTION()
883 php_filter_array_handler(array_input, op, return_value, add_empty TSRMLS_CC); in PHP_FUNCTION()