/php-src/Zend/ |
H A D | zend_attributes.c | 304 HashTable *named_params = NULL; in zend_get_attribute_object() local 319 if (!named_params) { in zend_get_attribute_object() 320 named_params = zend_new_array(0); in zend_get_attribute_object() 322 zend_hash_add_new(named_params, attribute_data->args[i].name, &val); in zend_get_attribute_object() 330 result = object_init_with_constructor(obj, attribute_ce, argc, args, named_params); in zend_get_attribute_object() 339 if (named_params) { in zend_get_attribute_object() 340 zend_array_destroy(named_params); in zend_get_attribute_object()
|
H A D | zend_lazy_objects.c | 479 HashTable *named_params = NULL; in zend_lazy_object_init_proxy() local 485 zend_call_known_fcc(initializer, &retval, argc, &zobj, named_params); in zend_lazy_object_init_proxy() 614 HashTable *named_params = NULL; in zend_lazy_object_init() local 619 zend_call_known_fcc(initializer, &retval, argc, &zobj, named_params); in zend_lazy_object_init()
|
H A D | zend_execute_API.c | 778 …ion_name, zval *retval_ptr, uint32_t param_count, zval params[], HashTable *named_params) /* {{{ */ in _call_user_function_impl() argument 793 fci.named_params = named_params; in _call_user_function_impl() 908 if (fci->named_params) { in zend_call_function() 913 ZEND_HASH_FOREACH_STR_KEY_VAL(fci->named_params, name, arg) { in zend_call_function() 1073 uint32_t param_count, zval *params, HashTable *named_params) in zend_call_known_function() argument 1086 fci.named_params = named_params; in zend_call_known_function() 1127 fci.named_params = NULL; in zend_call_method_if_exists()
|
H A D | zend_API.h | 56 HashTable *named_params; member 541 …l *arg, zend_class_entry *class_type, uint32_t param_count, zval *params, HashTable *named_params); 685 …al *function_name, zval *retval_ptr, uint32_t param_count, zval params[], HashTable *named_params); 690 …ction_named(function_table, object, function_name, retval_ptr, param_count, params, named_params) \ argument 691 _call_user_function_impl(object, function_name, retval_ptr, param_count, params, named_params) 840 uint32_t param_count, zval *params, HashTable *named_params); 843 …all_info_cache *fcc, zval *retval_ptr, uint32_t param_count, zval *params, HashTable *named_params) in zend_call_known_fcc() argument 852 …nown_function(func, fcc->object, fcc->called_scope, retval_ptr, param_count, params, named_params); in zend_call_known_fcc()
|
H A D | zend_closures.c | 137 Z_PARAM_VARIADIC_WITH_NAMED(fci.params, fci.param_count, fci.named_params) in ZEND_METHOD() 298 fci.named_params = NULL; in ZEND_NAMED_FUNCTION()
|
H A D | zend_API.c | 1850 …end_class_entry *class_type, uint32_t param_count, zval *params, HashTable *named_params) /* {{{ */ in object_init_with_constructor() argument 1876 if (UNEXPECTED(named_params != NULL && zend_hash_num_elements(named_params) != 0)) { in object_init_with_constructor() 1879 zend_hash_get_current_key(named_params, &arg_name, /* num_index */ NULL); in object_init_with_constructor() 1901 named_params in object_init_with_constructor() 4314 fci->named_params = NULL; in zend_fcall_info_init()
|
H A D | zend_fibers.c | 895 Z_PARAM_VARIADIC_WITH_NAMED(fiber->fci.params, fiber->fci.param_count, fiber->fci.named_params); in ZEND_METHOD()
|
H A D | zend_exceptions.c | 678 fci.named_params = NULL; in ZEND_METHOD()
|
/php-src/ext/zend_test/ |
H A D | fiber.c | 247 zend_array *named_params; in ZEND_METHOD() local 250 Z_PARAM_VARIADIC_WITH_NAMED(params, param_count, named_params); in ZEND_METHOD() 262 fiber->fci.named_params = named_params; in ZEND_METHOD()
|
/php-src/ext/pdo_firebird/ |
H A D | php_pdo_firebird_int.h | 115 HashTable *named_params; member
|
H A D | firebird_driver.c | 298 static int php_firebird_preprocess(const zend_string* sql, char* sql_out, HashTable* named_params) in php_firebird_preprocess() argument 397 if (named_params) { in php_firebird_preprocess() 400 zend_hash_str_update(named_params, pname, l, &tmp); in php_firebird_preprocess() 651 S->named_params = np; in firebird_handle_preparer() 999 XSQLDA *out_sqlda, isc_stmt_handle *s, HashTable *named_params) in php_firebird_alloc_prepare_stmt() argument 1014 if (!php_firebird_preprocess(sql, new_sql, named_params)) { in php_firebird_alloc_prepare_stmt()
|
H A D | firebird_statement.c | 167 zend_hash_destroy(S->named_params); in pdo_firebird_stmt_dtor() 168 FREE_HASHTABLE(S->named_params); in pdo_firebird_stmt_dtor() 648 if ((index = zend_hash_find(S->named_params, param->name)) != NULL) { in pdo_firebird_stmt_param_hook()
|
/php-src/ext/dom/ |
H A D | xpath_callbacks.c | 407 fci.named_params = NULL; in php_dom_xpath_callback_dispatch()
|
/php-src/ext/reflection/ |
H A D | php_reflection.c | 2014 HashTable *named_params; in ZEND_METHOD() local 2020 Z_PARAM_VARIADIC_WITH_NAMED(params, num_args, named_params) in ZEND_METHOD() 2034 zend_call_known_fcc(&fcc, &retval, num_args, params, named_params); in ZEND_METHOD() 3334 HashTable *named_params = NULL; in reflection_method_invoke() local 3352 Z_PARAM_VARIADIC_WITH_NAMED(params, argc, named_params) in reflection_method_invoke() 3355 if (zend_parse_parameters(ZEND_NUM_ARGS(), "o!h", &object, &named_params) == FAILURE) { in reflection_method_invoke() 3389 …tion(callback, (object ? Z_OBJ_P(object) : NULL), intern->ce, &retval, argc, params, named_params); in reflection_method_invoke() 4938 HashTable *named_params; in ZEND_METHOD() local 4947 Z_PARAM_VARIADIC_WITH_NAMED(params, num_args, named_params) in ZEND_METHOD() 4952 num_args, params, named_params); in ZEND_METHOD()
|
/php-src/ext/standard/ |
H A D | basic_functions.c | 1472 Z_PARAM_VARIADIC_WITH_NAMED(fci.params, fci.param_count, fci.named_params) 1500 fci.named_params = params; 1563 fci.named_params = params;
|
H A D | var_unserializer.re | 269 fci.named_params = NULL;
|
/php-src/sapi/phpdbg/ |
H A D | phpdbg_prompt.c | 121 fci.named_params = NULL; in phpdbg_call_register() 176 fci.named_params = Z_ARRVAL(params); in phpdbg_call_register()
|
/php-src/ext/pcre/ |
H A D | php_pcre.c | 2449 fci.named_params = NULL; in PHP_FUNCTION()
|
/php-src/ext/spl/ |
H A D | spl_iterators.c | 3089 &apply_info.fci, &apply_info.fcc, &apply_info.fci.named_params) == FAILURE) { in PHP_FUNCTION()
|
/php-src/ext/ffi/ |
H A D | ffi.c | 954 fci.named_params = NULL; in zend_ffi_callback_trampoline()
|