Lines Matching refs:function_table

2027 …class_entry *scope, const zend_function_entry *functions, HashTable *function_table, int type TSRM…  in zend_register_functions()  argument
2033 HashTable *target_function_table = function_table; in zend_register_functions()
2048 target_function_table = CG(function_table); in zend_register_functions()
2288 …unctions(const zend_function_entry *functions, int count, HashTable *function_table TSRMLS_DC) /* … in zend_unregister_functions()
2292 HashTable *target_function_table = function_table; in zend_unregister_functions()
2295 target_function_table = CG(function_table); in zend_unregister_functions()
2504 …s_entry, class_entry->info.internal.builtin_functions, &class_entry->function_table, MODULE_PERSIS… in do_register_internal_class()
2631 if (zend_hash_del(CG(function_table), function_name, function_name_length+1)==FAILURE) { in zend_disable_function()
2635 …return zend_register_functions(NULL, disabled_function, CG(function_table), MODULE_PERSISTENT TSRM… in zend_disable_function()
2669 zend_hash_clean(&((*disabled_class)->function_table)); in zend_disable_class()
2772 …if (zend_hash_find(EG(function_table), lmname, mlen+1, (void**)&fcc->function_handler) == SUCCESS)… in zend_is_callable_check_func()
2806 ftable = &fcc->calling_scope->function_table; in zend_is_callable_check_func()
2816 ftable = &ce_org->function_table; in zend_is_callable_check_func()
2842 if (zend_hash_find(&EG(scope)->function_table, lmname, mlen+1, (void **) &priv_fbc)==SUCCESS in zend_is_callable_check_func()
3245 …fci->function_table = fcc->calling_scope ? &fcc->calling_scope->function_table : EG(function_table in zend_fcall_info_init()
4008 HashTable *function_table; in zend_resolve_method_name() local
4017 function_table = &ce->function_table; in zend_resolve_method_name()
4018 zend_hash_internal_pointer_reset_ex(function_table, &iterator); in zend_resolve_method_name()
4019 while (zend_hash_get_current_data_ex(function_table, (void **)&func, &iterator) == SUCCESS) { in zend_resolve_method_name()
4025 …if (zend_hash_get_current_key_ex(function_table, &name, &len, &idx, 0, &iterator) != HASH_KEY_IS_S… in zend_resolve_method_name()
4035 zend_hash_move_forward_ex(function_table, &iterator); in zend_resolve_method_name()