Lines Matching refs:EG

157 		EG(precision) = i;  in PHP_INI_MH()
326 ZEND_ATOL(EG(timeout_seconds), ZSTR_VAL(new_value)); in PHP_INI_MH()
330 ZEND_ATOL(EG(timeout_seconds), ZSTR_VAL(new_value)); in PHP_INI_MH()
331 zend_set_timeout(EG(timeout_seconds), 0); in PHP_INI_MH()
806 } else if (EG(current_execute_data) && in php_verror()
807 EG(current_execute_data)->func && in php_verror()
808 ZEND_USER_CODE(EG(current_execute_data)->func->common.type) && in php_verror()
809 EG(current_execute_data)->opline && in php_verror()
810 EG(current_execute_data)->opline->opcode == ZEND_INCLUDE_OR_EVAL in php_verror()
812 switch (EG(current_execute_data)->opline->extended_value) { in php_verror()
936 if (PG(track_errors) && module_initialized && EG(active) && in php_verror()
937 …(Z_TYPE(EG(user_error_handler)) == IS_UNDEF || !(EG(user_error_handler_error_reporting) & type))) { in php_verror()
940 if (EG(current_execute_data)) { in php_verror()
945 zend_hash_str_update_ind(&EG(symbol_table), "php_errormsg", sizeof("php_errormsg")-1, &tmp); in php_verror()
1077 if (EG(error_handling) != EH_NORMAL) { in php_error_cb()
1099 if (EG(error_handling) == EH_THROW && !EG(exception)) { in php_error_cb()
1100 zend_throw_error_exception(EG(exception_class), buffer, 0, type); in php_error_cb()
1108 if (display && (EG(error_reporting) & type || (type & E_CORE)) in php_error_cb()
1230 EG(exit_status) = 255; in php_error_cb()
1247 zend_objects_store_mark_destructed(&EG(objects_store)); in php_error_cb()
1261 if (PG(track_errors) && module_initialized && EG(active)) { in php_error_cb()
1265 if (EG(current_execute_data)) { in php_error_cb()
1270 zend_hash_str_update_ind(&EG(symbol_table), "php_errormsg", sizeof("php_errormsg")-1, &tmp); in php_error_cb()
1503 if (EG(error_reporting) & E_WARNING) { in php_message_handler_for_zend()
1531 if (EG(error_reporting) & E_WARNING) { in php_message_handler_for_zend()
1606 zend_set_timeout(EG(timeout_seconds), 1); in php_start_sapi()
1664 zend_set_timeout(EG(timeout_seconds), 1); in php_request_startup()
1833 EG(flags) |= EG_FLAGS_IN_SHUTDOWN; in php_request_shutdown()
1840 EG(current_execute_data) = NULL; in php_request_shutdown()
2227 …REGISTER_MAIN_LONG_CONSTANT("PHP_WINDOWS_VERSION_MAJOR", EG(windows_version_info).dwMajorVers… in php_module_startup()
2228 …REGISTER_MAIN_LONG_CONSTANT("PHP_WINDOWS_VERSION_MINOR", EG(windows_version_info).dwMinorVers… in php_module_startup()
2229 …REGISTER_MAIN_LONG_CONSTANT("PHP_WINDOWS_VERSION_BUILD", EG(windows_version_info).dwBuildNumb… in php_module_startup()
2230 …REGISTER_MAIN_LONG_CONSTANT("PHP_WINDOWS_VERSION_PLATFORM", EG(windows_version_info).dwPlatformI… in php_module_startup()
2231 …REGISTER_MAIN_LONG_CONSTANT("PHP_WINDOWS_VERSION_SP_MAJOR", EG(windows_version_info).wServicePac… in php_module_startup()
2232 …REGISTER_MAIN_LONG_CONSTANT("PHP_WINDOWS_VERSION_SP_MINOR", EG(windows_version_info).wServicePac… in php_module_startup()
2233 …REGISTER_MAIN_LONG_CONSTANT("PHP_WINDOWS_VERSION_SUITEMASK", EG(windows_version_info).wSuiteMask,… in php_module_startup()
2234 …REGISTER_MAIN_LONG_CONSTANT("PHP_WINDOWS_VERSION_PRODUCTTYPE", EG(windows_version_info).wProductTy… in php_module_startup()
2324 EG(current_module) = module; in php_module_startup()
2326 EG(current_module) = NULL; in php_module_startup()
2517 EG(exit_status) = 0; in php_execute_script()
2555 zend_hash_add_empty_element(&EG(included_files), primary_file->opened_path); in php_execute_script()
2603 if (EG(exception)) { in php_execute_script()
2605 zend_exception_error(EG(exception), E_ERROR); in php_execute_script()
2631 EG(exit_status) = 0; in php_execute_simple_script()
2657 return EG(exit_status); in php_execute_simple_script()
2734 if (EG(exception)) { in php_lint_script()
2735 zend_exception_error(EG(exception), E_ERROR); in php_lint_script()