Lines Matching refs:function_table

2074 …class_entry *scope, const zend_function_entry *functions, HashTable *function_table, int type TSRM…  in zend_register_functions()  argument
2080 HashTable *target_function_table = function_table; in zend_register_functions()
2096 target_function_table = CG(function_table); in zend_register_functions()
2349 …unctions(const zend_function_entry *functions, int count, HashTable *function_table TSRMLS_DC) /* … in zend_unregister_functions()
2353 HashTable *target_function_table = function_table; in zend_unregister_functions()
2356 target_function_table = CG(function_table); in zend_unregister_functions()
2566 …s_entry, class_entry->info.internal.builtin_functions, &class_entry->function_table, MODULE_PERSIS… in do_register_internal_class()
2686 …if (zend_hash_find(CG(function_table), function_name, function_name_length+1, (void **)&func)==SUC… in zend_disable_function()
2725 zend_hash_clean(&((*disabled_class)->function_table)); in zend_disable_class()
2828 …if (zend_hash_find(EG(function_table), lmname, mlen+1, (void**)&fcc->function_handler) == SUCCESS)… in zend_is_callable_check_func()
2862 ftable = &fcc->calling_scope->function_table; in zend_is_callable_check_func()
2872 ftable = &ce_org->function_table; in zend_is_callable_check_func()
2898 if (zend_hash_find(&EG(scope)->function_table, lmname, mlen+1, (void **) &priv_fbc)==SUCCESS in zend_is_callable_check_func()
3301 …fci->function_table = fcc->calling_scope ? &fcc->calling_scope->function_table : EG(function_table in zend_fcall_info_init()
4087 HashTable *function_table; in zend_resolve_method_name() local
4096 function_table = &ce->function_table; in zend_resolve_method_name()
4097 zend_hash_internal_pointer_reset_ex(function_table, &iterator); in zend_resolve_method_name()
4098 while (zend_hash_get_current_data_ex(function_table, (void **)&func, &iterator) == SUCCESS) { in zend_resolve_method_name()
4104 …if (zend_hash_get_current_key_ex(function_table, &name, &len, &idx, 0, &iterator) != HASH_KEY_IS_S… in zend_resolve_method_name()
4114 zend_hash_move_forward_ex(function_table, &iterator); in zend_resolve_method_name()