Lines Matching refs:function_table
41 # define GLOBAL_FUNCTION_TABLE CG(function_table)
486 compiler_globals->function_table = (HashTable *) malloc(sizeof(HashTable)); in compiler_globals_ctor()
487 zend_hash_init_ex(compiler_globals->function_table, 1024, NULL, ZEND_FUNCTION_DTOR, 1, 0); in compiler_globals_ctor()
488 zend_hash_copy(compiler_globals->function_table, global_function_table, function_copy_ctor); in compiler_globals_ctor()
516 if (compiler_globals->function_table != GLOBAL_FUNCTION_TABLE) { in compiler_globals_dtor()
517 zend_hash_destroy(compiler_globals->function_table); in compiler_globals_dtor()
518 free(compiler_globals->function_table); in compiler_globals_dtor()
740 compiler_globals->function_table = (HashTable *) malloc(sizeof(HashTable)); in zend_startup()
743 *compiler_globals->function_table = *GLOBAL_FUNCTION_TABLE; in zend_startup()
799 *GLOBAL_FUNCTION_TABLE = *compiler_globals->function_table; in zend_post_startup()
807 free(compiler_globals->function_table); in zend_post_startup()
1240 …if (call_user_function_ex(CG(function_table), NULL, &orig_user_error_handler, &retval, 5, params, … in zend_error()
1411 …if (call_user_function_ex(CG(function_table), NULL, &orig_user_exception_handler, &retval2, 1, par… in zend_try_exception_handler()