Lines Matching refs:EG

331 …return (EG(current_module) = zend_register_module_ex(&zend_builtin_module)) == NULL ? FAILURE : SU…  in zend_startup_builtin_functions()
544 q = &EG(uninitialized_zval); in ZEND_FUNCTION()
560 q = &EG(uninitialized_zval); in ZEND_FUNCTION()
676 if (!EG(each_deprecation_thrown)) { in ZEND_FUNCTION()
678 EG(each_deprecation_thrown) = 1; in ZEND_FUNCTION()
735 old_error_reporting = EG(error_reporting); in ZEND_FUNCTION()
739 zend_ini_entry *p = EG(error_reporting_ini_entry); in ZEND_FUNCTION()
742 zval *zv = zend_hash_find_ex(EG(ini_directives), ZSTR_KNOWN(ZEND_STR_ERROR_REPORTING), 1); in ZEND_FUNCTION()
744 p = EG(error_reporting_ini_entry) = (zend_ini_entry*)Z_PTR_P(zv); in ZEND_FUNCTION()
750 if (!EG(modified_ini_directives)) { in ZEND_FUNCTION()
751 ALLOC_HASHTABLE(EG(modified_ini_directives)); in ZEND_FUNCTION()
752 zend_hash_init(EG(modified_ini_directives), 8, NULL, NULL, 0); in ZEND_FUNCTION()
754 …if (EXPECTED(zend_hash_add_ptr(EG(modified_ini_directives), ZSTR_KNOWN(ZEND_STR_ERROR_REPORTING), … in ZEND_FUNCTION()
765 EG(error_reporting) = Z_LVAL_P(err); in ZEND_FUNCTION()
767 EG(error_reporting) = atoi(ZSTR_VAL(p->value)); in ZEND_FUNCTION()
1441 ce = zend_hash_find_ptr(EG(class_table), lc_name); in ZEND_FUNCTION()
1477 ce = zend_hash_find_ptr(EG(class_table), lc_name); in ZEND_FUNCTION()
1514 ce = zend_hash_find_ptr(EG(class_table), lc_name); in ZEND_FUNCTION()
1548 func = zend_hash_find_ptr(EG(function_table), lcname); in ZEND_FUNCTION()
1606 ZEND_HASH_FOREACH_STR_KEY(&EG(included_files), entry) { in ZEND_FUNCTION()
1664 if (Z_TYPE(EG(user_error_handler)) != IS_UNDEF) { in ZEND_FUNCTION()
1665 ZVAL_COPY(return_value, &EG(user_error_handler)); in ZEND_FUNCTION()
1668 zend_stack_push(&EG(user_error_handlers_error_reporting), &EG(user_error_handler_error_reporting)); in ZEND_FUNCTION()
1669 zend_stack_push(&EG(user_error_handlers), &EG(user_error_handler)); in ZEND_FUNCTION()
1672 ZVAL_UNDEF(&EG(user_error_handler)); in ZEND_FUNCTION()
1676 ZVAL_COPY(&EG(user_error_handler), error_handler); in ZEND_FUNCTION()
1677 EG(user_error_handler_error_reporting) = (int)error_type; in ZEND_FUNCTION()
1689 if (Z_TYPE(EG(user_error_handler)) != IS_UNDEF) { in ZEND_FUNCTION()
1692 ZVAL_COPY_VALUE(&zeh, &EG(user_error_handler)); in ZEND_FUNCTION()
1693 ZVAL_UNDEF(&EG(user_error_handler)); in ZEND_FUNCTION()
1697 if (zend_stack_is_empty(&EG(user_error_handlers))) { in ZEND_FUNCTION()
1698 ZVAL_UNDEF(&EG(user_error_handler)); in ZEND_FUNCTION()
1701EG(user_error_handler_error_reporting) = zend_stack_int_top(&EG(user_error_handlers_error_reportin… in ZEND_FUNCTION()
1702 zend_stack_del_top(&EG(user_error_handlers_error_reporting)); in ZEND_FUNCTION()
1703 tmp = zend_stack_top(&EG(user_error_handlers)); in ZEND_FUNCTION()
1704 ZVAL_COPY_VALUE(&EG(user_error_handler), tmp); in ZEND_FUNCTION()
1705 zend_stack_del_top(&EG(user_error_handlers)); in ZEND_FUNCTION()
1731 if (Z_TYPE(EG(user_exception_handler)) != IS_UNDEF) { in ZEND_FUNCTION()
1732 ZVAL_COPY(return_value, &EG(user_exception_handler)); in ZEND_FUNCTION()
1735 zend_stack_push(&EG(user_exception_handlers), &EG(user_exception_handler)); in ZEND_FUNCTION()
1738 ZVAL_UNDEF(&EG(user_exception_handler)); in ZEND_FUNCTION()
1742 ZVAL_COPY(&EG(user_exception_handler), exception_handler); in ZEND_FUNCTION()
1754 if (Z_TYPE(EG(user_exception_handler)) != IS_UNDEF) { in ZEND_FUNCTION()
1755 zval_ptr_dtor(&EG(user_exception_handler)); in ZEND_FUNCTION()
1757 if (zend_stack_is_empty(&EG(user_exception_handlers))) { in ZEND_FUNCTION()
1758 ZVAL_UNDEF(&EG(user_exception_handler)); in ZEND_FUNCTION()
1760 zval *tmp = zend_stack_top(&EG(user_exception_handlers)); in ZEND_FUNCTION()
1761 ZVAL_COPY_VALUE(&EG(user_exception_handler), tmp); in ZEND_FUNCTION()
1762 zend_stack_del_top(&EG(user_exception_handlers)); in ZEND_FUNCTION()
1801 …zend_hash_apply_with_arguments(EG(class_table), copy_class_or_interface_name, 3, return_value, mas… in ZEND_FUNCTION()
1817 …zend_hash_apply_with_arguments(EG(class_table), copy_class_or_interface_name, 3, return_value, mas… in ZEND_FUNCTION()
1833 …zend_hash_apply_with_arguments(EG(class_table), copy_class_or_interface_name, 3, return_value, mas… in ZEND_FUNCTION()
1874 …zend_hash_apply_with_arguments(EG(function_table), copy_function_name, 3, &internal, &user, &exclu… in ZEND_FUNCTION()
1944 …func = zend_hash_str_find_ptr(EG(function_table), LAMBDA_TEMP_FUNCNAME, sizeof(LAMBDA_TEMP_FUNCNAM… in ZEND_FUNCTION()
1954 zend_hash_str_del(EG(function_table), LAMBDA_TEMP_FUNCNAME, sizeof(LAMBDA_TEMP_FUNCNAME)-1); in ZEND_FUNCTION()
1961 …VAL(function_name) + 1, sizeof("lambda_")+MAX_LENGTH_OF_LONG, "lambda_%d", ++EG(lambda_count)) + 1; in ZEND_FUNCTION()
1962 } while (zend_hash_add_ptr(EG(function_table), function_name, func) == NULL); in ZEND_FUNCTION()
1965 zend_hash_str_del(EG(function_table), LAMBDA_TEMP_FUNCNAME, sizeof(LAMBDA_TEMP_FUNCNAME)-1); in ZEND_FUNCTION()
2013 ZEND_HASH_FOREACH_KEY_VAL(&EG(regular_list), index, key, val) { in ZEND_FUNCTION()
2021 ZEND_HASH_FOREACH_KEY_VAL(&EG(regular_list), index, key, val) { in ZEND_FUNCTION()
2036 ZEND_HASH_FOREACH_KEY_VAL(&EG(regular_list), index, key, val) { in ZEND_FUNCTION()
2130 ZEND_HASH_FOREACH_PTR(EG(zend_constants), val) { in ZEND_FUNCTION()
2157 zend_hash_apply_with_argument(EG(zend_constants), add_constant_info, return_value); in ZEND_FUNCTION()
2193 ZEND_HASH_FILL_ADD(&EG(uninitialized_zval)); in debug_backtrace_get_args()
2205 ZEND_HASH_FILL_ADD(&EG(uninitialized_zval)); in debug_backtrace_get_args()
2221 ZEND_HASH_FILL_ADD(&EG(uninitialized_zval)); in debug_backtrace_get_args()
2301 if (EG(opline_before_exception)) { in ZEND_FUNCTION()
2302 lineno = EG(opline_before_exception)->lineno; in ZEND_FUNCTION()
2460 if (!(ptr = EG(current_execute_data))) { in zend_fetch_debug_backtrace()
2510 if (EG(opline_before_exception)) { in zend_fetch_debug_backtrace()
2511 lineno = EG(opline_before_exception)->lineno; in zend_fetch_debug_backtrace()