Lines Matching refs:function_table
50 # define GLOBAL_FUNCTION_TABLE CG(function_table)
619 compiler_globals->function_table = (HashTable *) malloc(sizeof(HashTable)); in compiler_globals_ctor()
620 zend_hash_init_ex(compiler_globals->function_table, 1024, NULL, ZEND_FUNCTION_DTOR, 1, 0); in compiler_globals_ctor()
621 zend_hash_copy(compiler_globals->function_table, global_function_table, function_copy_ctor); in compiler_globals_ctor()
645 if (compiler_globals->function_table != GLOBAL_FUNCTION_TABLE) { in compiler_globals_dtor()
646 zend_hash_destroy(compiler_globals->function_table); in compiler_globals_dtor()
647 free(compiler_globals->function_table); in compiler_globals_dtor()
870 compiler_globals->function_table = (HashTable *) malloc(sizeof(HashTable)); in zend_startup()
873 *compiler_globals->function_table = *GLOBAL_FUNCTION_TABLE; in zend_startup()
935 *GLOBAL_FUNCTION_TABLE = *compiler_globals->function_table; in zend_post_startup()
943 free(compiler_globals->function_table); in zend_post_startup()
1346 …if (call_user_function(CG(function_table), NULL, &orig_user_error_handler, &retval, 5, params) == … in zend_error()
1534 …if (call_user_function(CG(function_table), NULL, &orig_user_exception_handler, &retval2, 1, params… in zend_try_exception_handler()