zend_function     506 Zend/zend.c    	zend_function tmp_func;
zend_function     513 Zend/zend.c    	zend_hash_copy(compiler_globals->function_table, global_function_table, NULL, &tmp_func, sizeof(zend_function));
zend_function     770 Zend/zend_API.c 						zend_function *active_function = EG(current_execute_data)->function_state.function;
zend_function     790 Zend/zend_API.c 					zend_function *active_function = EG(current_execute_data)->function_state.function;
zend_function     813 Zend/zend_API.c 			zend_function *active_function = EG(current_execute_data)->function_state.function;
zend_function    1964 Zend/zend_API.c ZEND_API void zend_check_magic_method_implementation(const zend_class_entry *ce, const zend_function *fptr, int error_type TSRMLS_DC) /* {{{ */
zend_function    2032 Zend/zend_API.c 	zend_function function, *reg_function;
zend_function    2037 Zend/zend_API.c 	zend_function *ctor = NULL, *dtor = NULL, *clone = NULL, *__get = NULL, *__set = NULL, *__unset = NULL, *__isset = NULL, *__call = NULL, *__callstatic = NULL, *__tostring = NULL, *__debugInfo = NULL;
zend_function    2138 Zend/zend_API.c 		if (zend_hash_quick_add(target_function_table, lowercase_name, fname_len+1, hash, &function, sizeof(zend_function), (void**)&reg_function) == FAILURE) {
zend_function    2851 Zend/zend_API.c 			zend_function *priv_fbc;
zend_function    4014 Zend/zend_API.c ZEND_API const char* zend_resolve_method_name(zend_class_entry *ce, zend_function *f) /* {{{ */
zend_function    4016 Zend/zend_API.c 	zend_function *func;
zend_function      57 Zend/zend_API.h 	zend_function *function_handler;
zend_function     277 Zend/zend_API.h ZEND_API void zend_check_magic_method_implementation(const zend_class_entry *ce, const zend_function *fptr, int error_type TSRMLS_DC);
zend_function     528 Zend/zend_API.h ZEND_API const char* zend_resolve_method_name(zend_class_entry *ce, zend_function *f);
zend_function    1054 Zend/zend_builtin_functions.c 	zend_function *mptr;
zend_function    1363 Zend/zend_builtin_functions.c 	zend_function *func;
zend_function    1721 Zend/zend_builtin_functions.c static int copy_function_name(zend_function *func TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key)
zend_function    1835 Zend/zend_builtin_functions.c 		zend_function new_function, *func;
zend_function    1849 Zend/zend_builtin_functions.c 		} while (zend_hash_add(EG(function_table), function_name, function_name_length+1, &new_function, sizeof(zend_function), NULL)==FAILURE);
zend_function    2454 Zend/zend_builtin_functions.c 	zend_function *zif;
zend_function      39 Zend/zend_closures.c 	zend_function  func;
zend_function      50 Zend/zend_closures.c 	zend_function *func = EG(current_execute_data)->function_state.function;
zend_function     153 Zend/zend_closures.c static zend_function *zend_closure_get_constructor(zval *object TSRMLS_DC) /* {{{ */
zend_function     166 Zend/zend_closures.c ZEND_API zend_function *zend_get_closure_invoke_method(zval *obj TSRMLS_DC) /* {{{ */
zend_function     169 Zend/zend_closures.c 	zend_function *invoke = (zend_function*)emalloc(sizeof(zend_function));
zend_function     184 Zend/zend_closures.c ZEND_API const zend_function *zend_get_closure_method_def(zval *obj TSRMLS_DC) /* {{{ */
zend_function     198 Zend/zend_closures.c static zend_function *zend_closure_get_method(zval **object_ptr, char *method_name, int method_len, const zend_literal *key TSRMLS_DC) /* {{{ */
zend_function     309 Zend/zend_closures.c int zend_closure_get_closure(zval *obj, zend_class_entry **ce_ptr, zend_function **fptr_ptr, zval **zobj_ptr TSRMLS_DC) /* {{{ */
zend_function     457 Zend/zend_closures.c ZEND_API void zend_create_closure(zval *res, zend_function *func, zend_class_entry *scope, zval *this_ptr TSRMLS_DC) /* {{{ */
zend_function      31 Zend/zend_closures.h ZEND_API void zend_create_closure(zval *res, zend_function *op_array, zend_class_entry *scope, zval *this_ptr TSRMLS_DC);
zend_function      32 Zend/zend_closures.h ZEND_API zend_function *zend_get_closure_invoke_method(zval *obj TSRMLS_DC);
zend_function      33 Zend/zend_closures.h ZEND_API const zend_function *zend_get_closure_method_def(zval *obj TSRMLS_DC);
zend_function     105 Zend/zend_compile.c static void zend_push_function_call_entry(zend_function *fbc TSRMLS_DC) /* {{{ */
zend_function    1647 Zend/zend_compile.c 					CG(active_class_entry)->constructor = (zend_function *) CG(active_op_array);
zend_function    1653 Zend/zend_compile.c 				CG(active_class_entry)->constructor = (zend_function *) CG(active_op_array);
zend_function    1655 Zend/zend_compile.c 				CG(active_class_entry)->destructor = (zend_function *) CG(active_op_array);
zend_function    1657 Zend/zend_compile.c 				CG(active_class_entry)->clone = (zend_function *) CG(active_op_array);
zend_function    1662 Zend/zend_compile.c 				CG(active_class_entry)->__call = (zend_function *) CG(active_op_array);
zend_function    1667 Zend/zend_compile.c 				CG(active_class_entry)->__callstatic = (zend_function *) CG(active_op_array);
zend_function    1672 Zend/zend_compile.c 				CG(active_class_entry)->__get = (zend_function *) CG(active_op_array);
zend_function    1677 Zend/zend_compile.c 				CG(active_class_entry)->__set = (zend_function *) CG(active_op_array);
zend_function    1682 Zend/zend_compile.c 				CG(active_class_entry)->__unset = (zend_function *) CG(active_op_array);
zend_function    1687 Zend/zend_compile.c 				CG(active_class_entry)->__isset = (zend_function *) CG(active_op_array);
zend_function    1692 Zend/zend_compile.c 				CG(active_class_entry)->__tostring = (zend_function *) CG(active_op_array);
zend_function    1701 Zend/zend_compile.c 				CG(active_class_entry)->__debugInfo = (zend_function *) CG(active_op_array);
zend_function    1843 Zend/zend_compile.c 		zend_check_magic_method_implementation(CG(active_class_entry), (zend_function*)CG(active_op_array), E_COMPILE_ERROR TSRMLS_CC);
zend_function    1981 Zend/zend_compile.c 	zend_function *function;
zend_function    2630 Zend/zend_compile.c 	zend_function *function_ptr;
zend_function    3098 Zend/zend_compile.c ZEND_API void function_add_ref(zend_function *function) /* {{{ */
zend_function    3119 Zend/zend_compile.c 	zend_function *function, *new_function;
zend_function    3183 Zend/zend_compile.c 		zend_hash_update(&ce->function_table, ZEND_CONSTRUCTOR_FUNC_NAME, sizeof(ZEND_CONSTRUCTOR_FUNC_NAME), function, sizeof(zend_function), (void**)&new_function);
zend_function    3197 Zend/zend_compile.c 					zend_hash_update(&ce->function_table, lc_parent_class_name, ce->parent->name_length+1, function, sizeof(zend_function), (void**)&new_function);
zend_function    3224 Zend/zend_compile.c static void do_inherit_method(zend_function *function) /* {{{ */
zend_function    3234 Zend/zend_compile.c static zend_bool zend_do_perform_implementation_check(const zend_function *fe, const zend_function *proto TSRMLS_DC) /* {{{ */
zend_function    3373 Zend/zend_compile.c static char * zend_get_function_declaration(zend_function *fptr TSRMLS_DC) /* {{{ */
zend_function    3545 Zend/zend_compile.c static void do_inheritance_check_on_method(zend_function *child, zend_function *parent TSRMLS_DC) /* {{{ */
zend_function    3617 Zend/zend_compile.c static zend_bool do_inherit_method_check(HashTable *child_function_table, zend_function *parent, const zend_hash_key *hash_key, zend_class_entry *child_ce) /* {{{ */
zend_function    3620 Zend/zend_compile.c 	zend_function *child;
zend_function    3861 Zend/zend_compile.c 	zend_hash_merge_ex(&ce->function_table, &parent_ce->function_table, (copy_ctor_func_t) do_inherit_method, sizeof(zend_function), (merge_checker_func_t) do_inherit_method_check, ce);
zend_function    3930 Zend/zend_compile.c 		zend_hash_merge_ex(&ce->function_table, &iface->function_table, (copy_ctor_func_t) do_inherit_method, sizeof(zend_function), (merge_checker_func_t) do_inherit_method_check, ce);
zend_function    3967 Zend/zend_compile.c static zend_bool zend_traits_method_compatibility_check(zend_function *fn, zend_function *other_fn TSRMLS_DC) /* {{{ */
zend_function    3979 Zend/zend_compile.c static void zend_add_magic_methods(zend_class_entry* ce, const char* mname, uint mname_len, zend_function* fe TSRMLS_DC) /* {{{ */
zend_function    4022 Zend/zend_compile.c static void zend_add_trait_method(zend_class_entry *ce, const char *name, const char *arKey, uint nKeyLength, zend_function *fn, HashTable **overriden TSRMLS_DC) /* {{{ */
zend_function    4024 Zend/zend_compile.c 	zend_function *existing_fn = NULL;
zend_function    4054 Zend/zend_compile.c 			zend_hash_quick_update(*overriden, arKey, nKeyLength, h, fn, sizeof(zend_function), (void**)&fn);
zend_function    4092 Zend/zend_compile.c 	zend_hash_quick_update(&ce->function_table, arKey, nKeyLength, h, fn, sizeof(zend_function), (void**)&fn);
zend_function    4097 Zend/zend_compile.c static int zend_fixup_trait_method(zend_function *fn, zend_class_entry *ce TSRMLS_DC) /* {{{ */
zend_function    4114 Zend/zend_compile.c static int zend_traits_copy_functions(zend_function *fn TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key) /* {{{ */
zend_function    4122 Zend/zend_compile.c 	zend_function      fn_copy;
zend_function    4591 Zend/zend_compile.c 	zend_function *function;
zend_function    4603 Zend/zend_compile.c 	if (zend_hash_quick_add(function_table, Z_STRVAL_P(op2), Z_STRLEN_P(op2)+1, Z_HASH_P(op2), function, sizeof(zend_function), NULL)==FAILURE) {
zend_function    4605 Zend/zend_compile.c 		zend_function *old_function;
zend_function    7287 Zend/zend_compile.c 		zend_function *function;
zend_function     362 Zend/zend_compile.h 	zend_function *function;
zend_function     367 Zend/zend_compile.h 	zend_function *fbc;
zend_function     388 Zend/zend_compile.h 	zend_function     *fbc;
zend_function     668 Zend/zend_compile.h ZEND_API void function_add_ref(zend_function *function);
zend_function     687 Zend/zend_compile.h ZEND_API int zend_cleanup_function_data(zend_function *function TSRMLS_DC);
zend_function     688 Zend/zend_compile.h ZEND_API int zend_cleanup_function_data_full(zend_function *function TSRMLS_DC);
zend_function     689 Zend/zend_compile.h ZEND_API int clean_non_persistent_function_full(zend_function *function TSRMLS_DC);
zend_function     692 Zend/zend_compile.h ZEND_API void destroy_zend_function(zend_function *function TSRMLS_DC);
zend_function     693 Zend/zend_compile.h ZEND_API void zend_function_dtor(zend_function *function);
zend_function     588 Zend/zend_execute.c ZEND_API int zend_verify_arg_error(int error_type, const zend_function *zf, zend_uint arg_num, const char *need_msg, const char *need_kind, const char *given_msg, const char *given_kind TSRMLS_DC)
zend_function     626 Zend/zend_execute.c static inline int zend_verify_arg_type(zend_function *zf, zend_uint arg_num, zval *arg, ulong fetch_type, zval *default_value TSRMLS_DC)
zend_function    1658 Zend/zend_execute.c 		EX(prev_execute_data)->function_state.function = (zend_function*)op_array;
zend_function    1716 Zend/zend_execute.c 	EX(function_state).function = (zend_function *) op_array;
zend_function      72 Zend/zend_execute.h ZEND_API int zend_verify_arg_error(int error_type, const zend_function *zf, zend_uint arg_num, const char *need_msg, const char *need_kind, const char *given_msg, const char *given_kind TSRMLS_DC);
zend_function     103 Zend/zend_execute_API.c static int clean_non_persistent_function(zend_function *function TSRMLS_DC) /* {{{ */
zend_function     109 Zend/zend_execute_API.c ZEND_API int clean_non_persistent_function_full(zend_function *function TSRMLS_DC) /* {{{ */
zend_function    1442 Zend/zend_execute_API.c 	zend_function *afn[MAX_ABSTRACT_INFO_CNT + 1];
zend_function    1447 Zend/zend_execute_API.c static int zend_verify_abstract_class_function(zend_function *fn, zend_abstract_info *ai TSRMLS_DC) /* {{{ */
zend_function     324 Zend/zend_generators.c static zend_function *zend_generator_get_constructor(zval *object TSRMLS_DC) /* {{{ */
zend_function     212 Zend/zend_globals.h 	zend_function *autoload_func;
zend_function      34 Zend/zend_interfaces.c ZEND_API zval* zend_call_method(zval **object_pp, zend_class_entry *obj_ce, zend_function **fn_proxy, const char *function_name, int function_name_len, zval **retval_ptr_ptr, int param_count, zval* arg1, zval* arg2 TSRMLS_DC)
zend_function      41 Zend/zend_interfaces.h ZEND_API zval* zend_call_method(zval **object_pp, zend_class_entry *obj_ce, zend_function **fn_proxy, const char *function_name, int function_name_len, zval **retval_ptr_ptr, int param_count, zval* arg1, zval* arg2 TSRMLS_DC);
zend_function     951 Zend/zend_object_handlers.c static inline zend_function *zend_check_private_int(zend_function *fbc, zend_class_entry *ce, char *function_name_strval, int function_name_strlen, ulong hash_value TSRMLS_DC) /* {{{ */
zend_function     986 Zend/zend_object_handlers.c ZEND_API int zend_check_private(zend_function *fbc, zend_class_entry *ce, char *function_name_strval, int function_name_strlen TSRMLS_DC) /* {{{ */
zend_function    1039 Zend/zend_object_handlers.c 	zend_function *fbc;
zend_function    1069 Zend/zend_object_handlers.c 		zend_function *updated_fbc;
zend_function    1091 Zend/zend_object_handlers.c 			zend_function *priv_fbc;
zend_function    1173 Zend/zend_object_handlers.c 	return (zend_function *)callstatic_user_call;
zend_function    1179 Zend/zend_object_handlers.c ZEND_API zend_function *zend_std_get_static_method(zend_class_entry *ce, const char *function_name_strval, int function_name_strlen, const zend_literal *key TSRMLS_DC) /* {{{ */
zend_function    1181 Zend/zend_object_handlers.c 	zend_function *fbc = NULL;
zend_function    1234 Zend/zend_object_handlers.c 		zend_function *updated_fbc;
zend_function    1335 Zend/zend_object_handlers.c 	zend_function *constructor = zobj->ce->constructor;
zend_function    1624 Zend/zend_object_handlers.c int zend_std_get_closure(zval *obj, zend_class_entry **ce_ptr, zend_function **fptr_ptr, zval **zobj_ptr TSRMLS_DC) /* {{{ */
zend_function      63 Zend/zend_objects.c 	zend_function *destructor = object ? object->ce->destructor : NULL;
zend_function     112 Zend/zend_opcode.c ZEND_API void destroy_zend_function(zend_function *function TSRMLS_DC)
zend_function     124 Zend/zend_opcode.c ZEND_API void zend_function_dtor(zend_function *function)
zend_function     138 Zend/zend_opcode.c ZEND_API int zend_cleanup_function_data(zend_function *function TSRMLS_DC)
zend_function     148 Zend/zend_opcode.c ZEND_API int zend_cleanup_function_data_full(zend_function *function TSRMLS_DC)
zend_function    1849 Zend/zend_vm_def.h 			EX(function_state).function = (zend_function *) EX(op_array);
zend_function    1873 Zend/zend_vm_def.h 			EX(function_state).function = (zend_function *) EX(op_array);
zend_function    1914 Zend/zend_vm_def.h 	zend_function *fbc = EX(function_state).function;
zend_function    2059 Zend/zend_vm_def.h 	EX(function_state).function = (zend_function *) EX(op_array);
zend_function    2696 Zend/zend_vm_def.h 				call->fbc->common.prototype = (zend_function*)function_name;
zend_function    3388 Zend/zend_vm_def.h 		if (zend_verify_arg_type((zend_function *) EG(active_op_array), arg_num, NULL, opline->extended_value, NULL TSRMLS_CC)) {
zend_function    3410 Zend/zend_vm_def.h 		zend_verify_arg_type((zend_function *) EG(active_op_array), arg_num, *param, opline->extended_value, NULL TSRMLS_CC);
zend_function    3452 Zend/zend_vm_def.h 	zend_verify_arg_type((zend_function *) EG(active_op_array), arg_num, assignment_value, opline->extended_value, opline->op2.zv TSRMLS_CC);
zend_function    3483 Zend/zend_vm_def.h 		zend_verify_arg_type((zend_function *) EG(active_op_array), arg_num, *param, opline->extended_value, NULL TSRMLS_CC);
zend_function    3585 Zend/zend_vm_def.h 	zend_function *constructor;
zend_function    3638 Zend/zend_vm_def.h 	zend_function *clone;
zend_function    4041 Zend/zend_vm_def.h 		EX(function_state).function = (zend_function *) new_op_array;
zend_function    4054 Zend/zend_vm_def.h 		EX(function_state).function = (zend_function *) EX(op_array);
zend_function    5430 Zend/zend_vm_def.h 	zend_function *op_array;
zend_function    5442 Zend/zend_vm_def.h 		zend_create_closure(&EX_T(opline->result.var).tmp_var, (zend_function *) op_array,  EG(called_scope), NULL TSRMLS_CC);
zend_function    5444 Zend/zend_vm_def.h 		zend_create_closure(&EX_T(opline->result.var).tmp_var, (zend_function *) op_array,  EG(scope), EG(This) TSRMLS_CC);
zend_function     418 Zend/zend_vm_execute.h 			EX(function_state).function = (zend_function *) EX(op_array);
zend_function     442 Zend/zend_vm_execute.h 			EX(function_state).function = (zend_function *) EX(op_array);
zend_function     483 Zend/zend_vm_execute.h 	zend_function *fbc = EX(function_state).function;
zend_function     628 Zend/zend_vm_execute.h 	EX(function_state).function = (zend_function *) EX(op_array);
zend_function     864 Zend/zend_vm_execute.h 		if (zend_verify_arg_type((zend_function *) EG(active_op_array), arg_num, NULL, opline->extended_value, NULL TSRMLS_CC)) {
zend_function     886 Zend/zend_vm_execute.h 		zend_verify_arg_type((zend_function *) EG(active_op_array), arg_num, *param, opline->extended_value, NULL TSRMLS_CC);
zend_function     919 Zend/zend_vm_execute.h 		zend_verify_arg_type((zend_function *) EG(active_op_array), arg_num, *param, opline->extended_value, NULL TSRMLS_CC);
zend_function     932 Zend/zend_vm_execute.h 	zend_function *constructor;
zend_function    1500 Zend/zend_vm_execute.h 				call->fbc->common.prototype = (zend_function*)function_name;
zend_function    1653 Zend/zend_vm_execute.h 	zend_verify_arg_type((zend_function *) EG(active_op_array), arg_num, assignment_value, opline->extended_value, opline->op2.zv TSRMLS_CC);
zend_function    1844 Zend/zend_vm_execute.h 				call->fbc->common.prototype = (zend_function*)function_name;
zend_function    2043 Zend/zend_vm_execute.h 				call->fbc->common.prototype = (zend_function*)function_name;
zend_function    2279 Zend/zend_vm_execute.h 				call->fbc->common.prototype = (zend_function*)function_name;
zend_function    2800 Zend/zend_vm_execute.h 	zend_function *clone;
zend_function    3016 Zend/zend_vm_execute.h 		EX(function_state).function = (zend_function *) new_op_array;
zend_function    3029 Zend/zend_vm_execute.h 		EX(function_state).function = (zend_function *) EX(op_array);
zend_function    6806 Zend/zend_vm_execute.h 	zend_function *op_array;
zend_function    6818 Zend/zend_vm_execute.h 		zend_create_closure(&EX_T(opline->result.var).tmp_var, (zend_function *) op_array,  EG(called_scope), NULL TSRMLS_CC);
zend_function    6820 Zend/zend_vm_execute.h 		zend_create_closure(&EX_T(opline->result.var).tmp_var, (zend_function *) op_array,  EG(scope), EG(This) TSRMLS_CC);
zend_function    8166 Zend/zend_vm_execute.h 	zend_function *clone;
zend_function    8382 Zend/zend_vm_execute.h 		EX(function_state).function = (zend_function *) new_op_array;
zend_function    8395 Zend/zend_vm_execute.h 		EX(function_state).function = (zend_function *) EX(op_array);
zend_function    13535 Zend/zend_vm_execute.h 	zend_function *clone;
zend_function    13751 Zend/zend_vm_execute.h 		EX(function_state).function = (zend_function *) new_op_array;
zend_function    13764 Zend/zend_vm_execute.h 		EX(function_state).function = (zend_function *) EX(op_array);
zend_function    24635 Zend/zend_vm_execute.h 	zend_function *clone;
zend_function    31204 Zend/zend_vm_execute.h 	zend_function *clone;
zend_function    31420 Zend/zend_vm_execute.h 		EX(function_state).function = (zend_function *) new_op_array;
zend_function    31433 Zend/zend_vm_execute.h 		EX(function_state).function = (zend_function *) EX(op_array);
zend_function    1612 ext/mbstring/mbstring.c 	zend_function *func, *orig;
zend_function    1639 ext/mbstring/mbstring.c 					zend_hash_add(EG(function_table), p->save_func, strlen(p->save_func)+1, orig, sizeof(zend_function), NULL);
zend_function    1641 ext/mbstring/mbstring.c 					if (zend_hash_update(EG(function_table), p->orig_func, strlen(p->orig_func)+1, func, sizeof(zend_function), 
zend_function    1664 ext/mbstring/mbstring.c 	zend_function *orig;
zend_function    1692 ext/mbstring/mbstring.c 				zend_hash_update(EG(function_table), p->orig_func, strlen(p->orig_func)+1, orig, sizeof(zend_function), NULL);
zend_function     757 ext/opcache/Optimizer/block_pass.c 					zend_function *function;
zend_function       7 ext/opcache/Optimizer/optimize_func_calls.c 	zend_function *func;
zend_function      27 ext/opcache/Optimizer/optimize_func_calls.c 					zend_function *func;
zend_function    2258 ext/opcache/ZendAccelerator.c static int accel_clean_non_persistent_function(zend_function *function TSRMLS_DC)
zend_function    2274 ext/opcache/ZendAccelerator.c static int accel_cleanup_function_data(zend_function *function TSRMLS_DC)
zend_function    2540 ext/opcache/ZendAccelerator.c 	zend_function *func;
zend_function     395 ext/opcache/zend_accelerator_module.c 	zend_function *old_function;
zend_function      51 ext/opcache/zend_accelerator_util_funcs.c static void zend_accel_destroy_zend_function(zend_function *function)
zend_function     156 ext/opcache/zend_accelerator_util_funcs.c static int is_not_internal_function(zend_function *function)
zend_function     170 ext/opcache/zend_accelerator_util_funcs.c static int move_user_function(zend_function *function
zend_function     183 ext/opcache/zend_accelerator_util_funcs.c 		zend_hash_quick_update(function_table, hash_key->arKey, hash_key->nKeyLength, hash_key->h, function, sizeof(zend_function), NULL);
zend_function     203 ext/opcache/zend_accelerator_util_funcs.c static int copy_internal_function(zend_function *function, HashTable *function_table TSRMLS_DC)
zend_function     206 ext/opcache/zend_accelerator_util_funcs.c 		zend_hash_update(function_table, function->common.function_name, strlen(function->common.function_name) + 1, function, sizeof(zend_function), NULL);
zend_function     454 ext/opcache/zend_accelerator_util_funcs.c 	zend_function** new_prototype;
zend_function     524 ext/opcache/zend_accelerator_util_funcs.c 		q->pData = (void *) emalloc(sizeof(zend_function));
zend_function     697 ext/opcache/zend_accelerator_util_funcs.c 	zend_function **new_func;
zend_function     939 ext/opcache/zend_accelerator_util_funcs.c 	zend_function *function1, *function2;
zend_function     942 ext/opcache/zend_accelerator_util_funcs.c 	if (zend_hash_unique_copy(target, source, pCopyConstructor, sizeof(zend_function), 0, (void**)&function1, (void**)&function2) != SUCCESS) {
zend_function    1289 ext/pdo/pdo_dbh.c 	zend_function func;
zend_function    1358 ext/pdo/pdo_dbh.c 	zend_function *fbc = NULL;
zend_function    2251 ext/pdo/pdo_stmt.c 	zend_function *fbc = NULL;
zend_function    2686 ext/pdo/pdo_stmt.c 	zend_function *fbc;
zend_function    1065 ext/phar/func_interceptors.c 	zend_function *orig;
zend_function    1102 ext/phar/func_interceptors.c 	zend_function *orig;
zend_function     469 ext/readline/readline_cli.c 	zend_function *func;
zend_function     194 ext/reflection/php_reflection.c 	zend_function *fptr;
zend_function     273 ext/reflection/php_reflection.c static zend_function *_copy_function(zend_function *fptr TSRMLS_DC) /* {{{ */
zend_function     279 ext/reflection/php_reflection.c 		zend_function *copy_fptr;
zend_function     280 ext/reflection/php_reflection.c 		copy_fptr = emalloc(sizeof(zend_function));
zend_function     281 ext/reflection/php_reflection.c 		memcpy(copy_fptr, fptr, sizeof(zend_function));
zend_function     291 ext/reflection/php_reflection.c static void _free_function(zend_function *fptr TSRMLS_DC) /* {{{ */
zend_function     369 ext/reflection/php_reflection.c static void _function_string(string *str, zend_function *fptr, zend_class_entry *scope, char* indent TSRMLS_DC);
zend_function     517 ext/reflection/php_reflection.c 			zend_function *mptr;
zend_function     535 ext/reflection/php_reflection.c 			zend_function *mptr;
zend_function     615 ext/reflection/php_reflection.c 			zend_function *mptr;
zend_function     637 ext/reflection/php_reflection.c 						zend_function *closure;
zend_function     715 ext/reflection/php_reflection.c static void _parameter_string(string *str, zend_function *fptr, struct _zend_arg_info *arg_info, zend_uint offset, zend_uint required, char* indent TSRMLS_DC)
zend_function     799 ext/reflection/php_reflection.c static void _function_parameter_string(string *str, zend_function *fptr, char* indent TSRMLS_DC)
zend_function     821 ext/reflection/php_reflection.c static void _function_closure_string(string *str, zend_function *fptr, char* indent TSRMLS_DC)
zend_function     855 ext/reflection/php_reflection.c static void _function_string(string *str, zend_function *fptr, zend_class_entry *scope, char* indent TSRMLS_DC)
zend_function     858 ext/reflection/php_reflection.c 	zend_function *overwrites;
zend_function    1146 ext/reflection/php_reflection.c 		zend_function *fptr;
zend_function    1213 ext/reflection/php_reflection.c 	zend_function *mptr;
zend_function    1270 ext/reflection/php_reflection.c static void reflection_parameter_factory(zend_function *fptr, zval *closure_object, struct _zend_arg_info *arg_info, zend_uint offset, zend_uint required, zval *object TSRMLS_DC)
zend_function    1301 ext/reflection/php_reflection.c static void reflection_function_factory(zend_function *function, zval *closure_object, zval *object TSRMLS_DC)
zend_function    1323 ext/reflection/php_reflection.c static void reflection_method_factory(zend_class_entry *ce, zend_function *method, zval *closure_object, zval *object TSRMLS_DC)
zend_function    1641 ext/reflection/php_reflection.c 	zend_function *fptr;
zend_function    1652 ext/reflection/php_reflection.c 		fptr = (zend_function*)zend_get_closure_method_def(closure TSRMLS_CC);
zend_function    1692 ext/reflection/php_reflection.c 	zend_function *fptr;
zend_function    1721 ext/reflection/php_reflection.c 	zend_function *fptr;
zend_function    1736 ext/reflection/php_reflection.c 	zend_function *fptr;
zend_function    1757 ext/reflection/php_reflection.c 	zend_function *fptr;
zend_function    1758 ext/reflection/php_reflection.c 	const zend_function *closure_func;
zend_function    1778 ext/reflection/php_reflection.c 	zend_function *fptr;
zend_function    1795 ext/reflection/php_reflection.c 	zend_function *fptr;
zend_function    1810 ext/reflection/php_reflection.c 	zend_function *fptr;
zend_function    1825 ext/reflection/php_reflection.c 	zend_function *fptr;
zend_function    1838 ext/reflection/php_reflection.c 	zend_function *fptr;
zend_function    1856 ext/reflection/php_reflection.c 	zend_function *fptr;
zend_function    1874 ext/reflection/php_reflection.c 	zend_function *fptr;
zend_function    1892 ext/reflection/php_reflection.c 	zend_function *fptr;
zend_function    1911 ext/reflection/php_reflection.c 	zend_function *fptr;
zend_function    1937 ext/reflection/php_reflection.c 	zend_function *fptr;
zend_function    1997 ext/reflection/php_reflection.c 	zend_function *fptr;
zend_function    2050 ext/reflection/php_reflection.c 	zend_function *fptr;
zend_function    2064 ext/reflection/php_reflection.c 	zend_function *fptr;
zend_function    2078 ext/reflection/php_reflection.c 	zend_function *fptr;
zend_function    2092 ext/reflection/php_reflection.c 	zend_function *fptr;
zend_function    2119 ext/reflection/php_reflection.c 	zend_function *fptr;
zend_function    2143 ext/reflection/php_reflection.c 	zend_function *fptr;
zend_function    2179 ext/reflection/php_reflection.c 	zend_function *fptr;
zend_function    2264 ext/reflection/php_reflection.c 					fptr = (zend_function *)zend_get_closure_method_def(reference TSRMLS_CC);
zend_function    2734 ext/reflection/php_reflection.c 	zend_function *mptr;
zend_function    2829 ext/reflection/php_reflection.c 	zend_function *mptr;
zend_function    2848 ext/reflection/php_reflection.c 	zend_function *mptr;
zend_function    2885 ext/reflection/php_reflection.c 	zend_function *mptr;
zend_function    2988 ext/reflection/php_reflection.c 	zend_function *mptr;
zend_function    3241 ext/reflection/php_reflection.c 	zend_function *mptr;
zend_function    3259 ext/reflection/php_reflection.c 	zend_function *mptr;
zend_function    3274 ext/reflection/php_reflection.c 	zend_function *mptr;
zend_function    3290 ext/reflection/php_reflection.c 	zend_function *mptr;
zend_function    3308 ext/reflection/php_reflection.c 	zend_function *mptr;
zend_function    3759 ext/reflection/php_reflection.c 	zend_function *mptr;
zend_function    3800 ext/reflection/php_reflection.c static void _addmethod(zend_function *mptr, zend_class_entry *ce, zval *retval, long filter, zval *obj TSRMLS_DC)
zend_function    3804 ext/reflection/php_reflection.c 	zend_function *closure;
zend_function    3824 ext/reflection/php_reflection.c static int _addmethod_va(zend_function *mptr TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key)
zend_function    3860 ext/reflection/php_reflection.c 		zend_function *closure = zend_get_closure_invoke_method(intern->obj TSRMLS_CC);
zend_function    4266 ext/reflection/php_reflection.c 	zend_function *constructor;
zend_function    4365 ext/reflection/php_reflection.c 	zend_function *constructor;
zend_function    5338 ext/reflection/php_reflection.c 	zend_function *fptr;
zend_function    1794 ext/session/session.c 		zend_function *default_mptr, *current_mptr;
zend_function      71 ext/simplexml/php_simplexml.h 	zend_function *fptr_count;
zend_function     644 ext/soap/soap.c 			(zend_function *)&fe, NULL, NULL);
zend_function    1377 ext/soap/soap.c 		zend_function *f;
zend_function    1425 ext/soap/soap.c 				zend_function *f;
zend_function    1452 ext/soap/soap.c 		zend_function *f;
zend_function     395 ext/spl/php_spl.c 	zend_function *func_ptr;
zend_function     474 ext/spl/php_spl.c 	zend_function *spl_func_ptr;
zend_function     634 ext/spl/php_spl.c 	zend_function *spl_func_ptr;
zend_function     710 ext/spl/php_spl.c 	zend_function *fptr;
zend_function      73 ext/spl/spl_array.c 	zend_function     *fptr_offset_get;
zend_function      74 ext/spl/spl_array.c 	zend_function     *fptr_offset_set;
zend_function      75 ext/spl/spl_array.c 	zend_function     *fptr_offset_has;
zend_function      76 ext/spl/spl_array.c 	zend_function     *fptr_offset_del;
zend_function      77 ext/spl/spl_array.c 	zend_function     *fptr_count;
zend_function     665 ext/spl/spl_directory.c zend_function *spl_filesystem_object_get_method_check(zval **object_ptr, char *method, int method_len, const struct _zend_literal *key TSRMLS_DC) /* {{{ */
zend_function    2099 ext/spl/spl_directory.c static int spl_filesystem_file_call(spl_filesystem_object *intern, zend_function *func_ptr, int pass_num_args, zval *return_value, zval *arg2 TSRMLS_DC) /* {{{ */
zend_function    2150 ext/spl/spl_directory.c 	zend_function *func_ptr; \
zend_function      83 ext/spl/spl_directory.h 			zend_function      *func_rewind;
zend_function      84 ext/spl/spl_directory.h 			zend_function      *func_next;
zend_function      85 ext/spl/spl_directory.h 			zend_function      *func_valid;
zend_function      99 ext/spl/spl_directory.h 			zend_function      *func_getCurr;
zend_function      92 ext/spl/spl_dllist.c 	zend_function         *fptr_offset_get;
zend_function      93 ext/spl/spl_dllist.c 	zend_function         *fptr_offset_set;
zend_function      94 ext/spl/spl_dllist.c 	zend_function         *fptr_offset_has;
zend_function      95 ext/spl/spl_dllist.c 	zend_function         *fptr_offset_del;
zend_function      96 ext/spl/spl_dllist.c 	zend_function         *fptr_count;
zend_function      55 ext/spl/spl_engine.h 	zend_function *func = pce->constructor;
zend_function      55 ext/spl/spl_fixedarray.c 	zend_function         *fptr_offset_get;
zend_function      56 ext/spl/spl_fixedarray.c 	zend_function         *fptr_offset_set;
zend_function      57 ext/spl/spl_fixedarray.c 	zend_function         *fptr_offset_has;
zend_function      58 ext/spl/spl_fixedarray.c 	zend_function         *fptr_offset_del;
zend_function      59 ext/spl/spl_fixedarray.c 	zend_function         *fptr_count;
zend_function      77 ext/spl/spl_heap.c 	zend_function      *fptr_cmp;
zend_function      78 ext/spl/spl_heap.c 	zend_function      *fptr_count;
zend_function     111 ext/spl/spl_iterators.c 	zend_function            *beginIteration;
zend_function     112 ext/spl/spl_iterators.c 	zend_function            *endIteration;
zend_function     113 ext/spl/spl_iterators.c 	zend_function            *callHasChildren;
zend_function     114 ext/spl/spl_iterators.c 	zend_function            *callGetChildren;
zend_function     115 ext/spl/spl_iterators.c 	zend_function            *beginChildren;
zend_function     116 ext/spl/spl_iterators.c 	zend_function            *endChildren;
zend_function     117 ext/spl/spl_iterators.c 	zend_function            *nextElement;
zend_function      88 ext/spl/spl_observer.c 	zend_function    *fptr_get_hash;
zend_function      64 ext/xml/php_xml.h 	zend_function *startElementPtr;
zend_function      65 ext/xml/php_xml.h 	zend_function *endElementPtr;
zend_function      66 ext/xml/php_xml.h 	zend_function *characterDataPtr;
zend_function      67 ext/xml/php_xml.h 	zend_function *processingInstructionPtr;
zend_function      68 ext/xml/php_xml.h 	zend_function *defaultPtr;
zend_function      69 ext/xml/php_xml.h 	zend_function *unparsedEntityDeclPtr;
zend_function      70 ext/xml/php_xml.h 	zend_function *notationDeclPtr;
zend_function      71 ext/xml/php_xml.h 	zend_function *externalEntityRefPtr;
zend_function      72 ext/xml/php_xml.h 	zend_function *unknownEncodingPtr;
zend_function      73 ext/xml/php_xml.h 	zend_function *startNamespaceDeclPtr;
zend_function      74 ext/xml/php_xml.h 	zend_function *endNamespaceDeclPtr;
zend_function      80 ext/xml/xml.c  static zval *xml_call_handler(xml_parser *, zval *, zend_function *, int, zval **);
zend_function     504 ext/xml/xml.c  static zval *xml_call_handler(xml_parser *parser, zval *handler, zend_function *function_ptr, int argc, zval **argv)
zend_function      84 sapi/fpm/fpm/fpm_php_trace.c 			if (0 > fpm_trace_get_strz(buf, buf_size, function + offsetof(zend_function, common.function_name))) {
zend_function     141 sapi/phpdbg/phpdbg.c 	zend_function *function = (zend_function*) data;
zend_function      33 sapi/phpdbg/phpdbg_bp.c static inline phpdbg_breakbase_t *phpdbg_find_breakpoint_symbol(zend_function* TSRMLS_DC);
zend_function     440 sapi/phpdbg/phpdbg_bp.c 	zend_function *func;
zend_function     810 sapi/phpdbg/phpdbg_bp.c static inline phpdbg_breakbase_t *phpdbg_find_breakpoint_symbol(zend_function *fbc TSRMLS_DC) /* {{{ */
zend_function     894 sapi/phpdbg/phpdbg_bp.c 	zend_function *function = (zend_function*) execute_data->function_state.function;
zend_function     133 sapi/phpdbg/phpdbg_frame.c 		const zend_function *func = phpdbg_get_function(
zend_function     338 sapi/phpdbg/phpdbg_info.c 	zend_function *zf, **pzf;
zend_function     349 sapi/phpdbg/phpdbg_info.c 				&functions, (void**) &zf, sizeof(zend_function), NULL);
zend_function      85 sapi/phpdbg/phpdbg_list.c 		zend_function *function;
zend_function     182 sapi/phpdbg/phpdbg_list.c void phpdbg_list_function(const zend_function *fbc TSRMLS_DC) /* {{{ */
zend_function     200 sapi/phpdbg/phpdbg_list.c 	zend_function* fbc;
zend_function      36 sapi/phpdbg/phpdbg_list.h void phpdbg_list_function(const zend_function* TSRMLS_DC);
zend_function      53 sapi/phpdbg/phpdbg_print.c static inline void phpdbg_print_function_helper(zend_function *method TSRMLS_DC) /* {{{ */
zend_function     118 sapi/phpdbg/phpdbg_print.c 			phpdbg_print_function_helper((zend_function*) PHPDBG_G(ops) TSRMLS_CC);
zend_function     145 sapi/phpdbg/phpdbg_print.c 		phpdbg_print_function_helper((zend_function*) ops TSRMLS_CC);
zend_function     171 sapi/phpdbg/phpdbg_print.c 			zend_function *method;
zend_function     191 sapi/phpdbg/phpdbg_print.c 		zend_function *fbc;
zend_function     215 sapi/phpdbg/phpdbg_print.c 	zend_function* fbc;
zend_function     881 sapi/phpdbg/phpdbg_prompt.c 	zend_function *function;
zend_function     888 sapi/phpdbg/phpdbg_prompt.c 				&PHPDBG_G(registered), lcname, lcname_len+1, (void*)&function, sizeof(zend_function), NULL);
zend_function    1140 sapi/phpdbg/phpdbg_prompt.c 	EX(function_state).function = (zend_function *) op_array;
zend_function     170 sapi/phpdbg/phpdbg_utils.c PHPDBG_API const zend_function *phpdbg_get_function(const char *fname, const char *cname TSRMLS_DC) /* {{{ */
zend_function     172 sapi/phpdbg/phpdbg_utils.c 	zend_function *func = NULL;
zend_function      34 sapi/phpdbg/phpdbg_utils.h PHPDBG_API const zend_function *phpdbg_get_function(const char*, const char* TSRMLS_DC);