Home
last modified time | relevance | path

Searched refs:function_table (Results 51 – 75 of 84) sorted by relevance

1234

/php-src/Zend/
H A Dzend_object_handlers.c1278 func = zend_hash_find(&scope->function_table, function_name); in zend_get_parent_private_method()
1421 if (UNEXPECTED((func = zend_hash_find(&zobj->ce->function_table, lc_method_name)) == NULL)) { in zend_std_get_method()
1508 zval *func = zend_hash_find(&ce->function_table, lc_function_name); in zend_std_get_static_method()
1951 zval *func = zend_hash_find_known_hash(&ce->function_table, ZSTR_KNOWN(ZEND_STR_MAGIC_INVOKE)); in zend_std_get_closure()
H A Dzend_portability.h499 #undef function_table
H A Dzend_API.h378 …end_class_entry *scope, const zend_function_entry *functions, HashTable *function_table, int type);
379 …d_unregister_functions(const zend_function_entry *functions, int count, HashTable *function_table);
685 #define call_user_function(function_table, object, function_name, retval_ptr, param_count, params) \ argument
688 #define call_user_function_named(function_table, object, function_name, retval_ptr, param_count, pa… argument
H A Dzend_compile.c1214 …zval *zv = zend_hash_find_known_hash(compile_time ? CG(function_table) : EG(function_table), lcnam… in do_bind_function_error()
1234 zend_function *added_func = zend_hash_add_ptr(EG(function_table), Z_STR_P(lcname), func); in do_bind_function()
2006 zend_hash_init(&ce->function_table, 8, NULL, ZEND_FUNCTION_DTOR, persistent_hashes); in zend_initialize_class_data()
4179 fbc = zend_hash_find_ptr(CG(function_table), lcname); in zend_try_compile_ct_bound_init_user_func()
4670 frameless_function = zend_hash_find_ptr(CG(function_table), lc_func_name); in zend_compile_ns_call()
4843 zval *fbc_zv = zend_hash_find(CG(function_table), lcname); in zend_compile_call()
4880 Z_EXTRA_P(CT_CONSTANT(opline->op2)) = fbc_bucket - CG(function_table)->arData; in zend_compile_call()
4938 fbc = zend_hash_find_ptr(&CG(active_class_entry)->function_table, lcname); in zend_compile_method_call()
4964 zend_function *fbc = zend_hash_find_ptr(&ce->function_table, lcname); in zend_get_compatible_func_or_null()
7692 if (zend_hash_add_ptr(&ce->function_table, lcname, op_array) == NULL) { in zend_begin_method_decl()
[all …]
H A Dzend_closures.c54 …if (call_user_function_named(CG(function_table), NULL, ZEND_THIS, return_value, num_args, args, na… in ZEND_METHOD()
H A Dzend_vm_def.h3767 func = zend_hash_find_known_hash(EG(function_table), Z_STR_P(function_name+1));
3911 func = zend_hash_find_known_hash(EG(function_table), Z_STR_P(func_name + 1));
3913 func = zend_hash_find_known_hash(EG(function_table), Z_STR_P(func_name + 2));
3944 func = zend_hash_find_known_hash(EG(function_table), Z_STR_P(fname));
3969 fbc = Z_PTR(EG(function_table)->arData[Z_EXTRA_P(RT_CONSTANT(opline, opline->op2))].val);
9349 …zend_function *count_fn = zend_hash_find_ptr(&zobj->ce->function_table, ZSTR_KNOWN(ZEND_STR_COUNT)…
9594 zval *func = zend_hash_find_known_hash(EG(function_table), Z_STR_P(func_name));
H A Dzend_execute.c4052 zval *zv = zend_hash_find(EG(function_table), name); in zend_fetch_function()
4067 zval *zv = zend_hash_str_find(EG(function_table), name, len); in zend_fetch_function_str()
4723 if (UNEXPECTED((func = zend_hash_find(EG(function_table), lcname)) == NULL)) { in zend_init_dynamic_call_string()
/php-src/ext/opcache/jit/
H A Dzend_jit.c2892 void zend_jit_check_funcs(HashTable *function_table, bool is_method) { in zend_jit_check_funcs() argument
2899 ZEND_HASH_MAP_REVERSE_FOREACH_PTR(function_table, func) { in zend_jit_check_funcs()
3208 ZEND_HASH_MAP_FOREACH_PTR(&ce->function_table, op_array) { in zend_jit_script()
3624 zend_jit_check_funcs(EG(function_table), 0); in zend_jit_deactivate()
3629 zend_jit_check_funcs(&ce->function_table, 1); in zend_jit_deactivate()
3685 ZEND_HASH_MAP_FOREACH_PTR(&script->script.function_table, op_array) { in zend_jit_restart_preloaded_script()
3690 ZEND_HASH_MAP_FOREACH_PTR(&ce->function_table, op_array) { in zend_jit_restart_preloaded_script()
H A Dzend_jit_helpers.c56 zval *func = zend_hash_find_known_hash(EG(function_table), name); in zend_jit_find_func_helper()
72 zval *func = zend_hash_find_known_hash(EG(function_table), Z_STR_P(func_name)); in zend_jit_jmp_frameless_helper()
80 zval *func = zend_hash_find_known_hash(EG(function_table), Z_STR_P(func_name + 1)); in zend_jit_find_ns_func_helper()
84 func = zend_hash_find_known_hash(EG(function_table), Z_STR_P(func_name + 2)); in zend_jit_find_ns_func_helper()
/php-src/sapi/phpdbg/
H A Dphpdbg_prompt.c1122 phpdbg_writeln("Functions %d", zend_hash_num_elements(EG(function_table))); in PHPDBG_COMMAND()
1423 if ((function = zend_hash_str_find_ptr(EG(function_table), lcname, lcname_len))) { in PHPDBG_COMMAND()
1458 phpdbg_writeln("Functions %d", zend_hash_num_elements(EG(function_table))); in PHPDBG_COMMAND()
/php-src/ext/phar/
H A Dfunc_interceptors.c887 if (NULL != (orig = zend_hash_str_find_ptr(CG(function_table), #func, sizeof(#func)-1))) { \
924 …if (PHAR_G(orig_##func) && NULL != (orig = zend_hash_str_find_ptr(CG(function_table), #func, sizeo…
/php-src/ext/zip/
H A Dphp_zip_arginfo.h1282 …zend_add_parameter_attribute(zend_hash_str_find_ptr(&class_entry->function_table, "setpassword", s… in register_class_ZipArchive()
1285 …zend_add_parameter_attribute(zend_hash_str_find_ptr(&class_entry->function_table, "setencryptionna… in register_class_ZipArchive()
1289 …zend_add_parameter_attribute(zend_hash_str_find_ptr(&class_entry->function_table, "setencryptionin… in register_class_ZipArchive()
H A Dphp_zip.c3029 …if (call_user_function(EG(function_table), NULL, &obj->progress_callback, &cb_retval, 1, cb_args) …
3073 …if (call_user_function(EG(function_table), NULL, &obj->cancel_callback, &cb_retval, 0, NULL) == SU…
/php-src/ext/spl/
H A Dphp_spl.c555 CG(function_table), "spl_autoload", sizeof("spl_autoload") - 1); in PHP_FUNCTION()
H A Dspl_fixedarray.c303 …zend_function *fptr_count = zend_hash_find_ptr(&class_type->function_table, ZSTR_KNOWN(ZEND_STR_CO… in spl_fixedarray_object_new_ex()
H A Dspl_observer.c274 …zend_function *get_hash = zend_hash_str_find_ptr(&class_type->function_table, "gethash", sizeof("g… in spl_object_storage_new_ex()
/php-src/ext/standard/
H A Dvar_unserializer.re273 &fci.object->ce->function_table, ZSTR_KNOWN(ZEND_STR_WAKEUP));
818 && zend_hash_exists(&Z_OBJCE_P(rval)->function_table, ZSTR_KNOWN(ZEND_STR_WAKEUP));
H A Dvar.c1145 zval *zv = zend_hash_find_known_hash(&ce->function_table, ZSTR_KNOWN(ZEND_STR_SLEEP)); in php_var_serialize_intern()
H A Dbasic_functions_arginfo.h4124 …zend_add_parameter_attribute(zend_hash_str_find_ptr(CG(function_table), "crypt", sizeof("crypt") -… in register_basic_functions_symbols()
4126 …zend_add_parameter_attribute(zend_hash_str_find_ptr(CG(function_table), "password_hash", sizeof("p… in register_basic_functions_symbols()
4128 …zend_add_parameter_attribute(zend_hash_str_find_ptr(CG(function_table), "password_verify", sizeof(… in register_basic_functions_symbols()
/php-src/Zend/Optimizer/
H A Dzend_cfg.c341 if ((fn = zend_hash_find_ptr(EG(function_table), Z_STR_P(zv))) != NULL) { in zend_build_cfg()
H A Dblock_pass.c363 if((function = zend_hash_find_ptr(EG(function_table), Z_STR_P(arg))) != NULL) { in zend_optimize_block()
/php-src/ext/pgsql/
H A Dpgsql_arginfo.h846 …zend_add_parameter_attribute(zend_hash_str_find_ptr(CG(function_table), "pg_change_password", size… in register_pgsql_symbols()
/php-src/ext/xml/
H A Dxml.c1091 zend_function *method_ptr = zend_hash_find_ptr(&ce->function_table, lc_name); in php_xml_check_string_method_arg()
/php-src/docs/source/miscellaneous/
H A Dstubs.rst424 …zend_add_parameter_attribute(zend_hash_str_find_ptr(CG(function_table), "connect", sizeof("connect…
/php-src/ext/pdo/
H A Dpdo_stmt.c2044 if ((fbc = zend_hash_find_ptr(&object->ce->function_table, lc_method_name)) == NULL) { in dbstmt_method_get()

Completed in 227 milliseconds

1234