Home
last modified time | relevance | path

Searched refs:E_CORE_ERROR (Results 1 – 25 of 25) sorted by relevance

/php-src/Zend/
H A Dzend_errors.h27 #define E_CORE_ERROR (1<<4L) macro
43 #define E_ALL (E_ERROR | E_WARNING | E_PARSE | E_NOTICE | E_CORE_ERROR | E_CORE_WARNING | E_COMPILE…
44 #define E_CORE (E_CORE_ERROR | E_CORE_WARNING)
47 #define E_FATAL_ERRORS (E_ERROR | E_CORE_ERROR | E_COMPILE_ERROR | E_USER_ERROR | E_RECOVERABLE_ERR…
H A Dzend_constants.stub.php33 const E_CORE_ERROR = UNKNOWN; define
H A Dzend_constants_arginfo.h10 REGISTER_LONG_CONSTANT("E_CORE_ERROR", E_CORE_ERROR, CONST_PERSISTENT); in register_zend_constants_symbols()
H A Dzend_variables.c102 …zend_error_noreturn(E_CORE_ERROR, "Internal zval's can't be arrays, objects, resources or referenc… in zval_internal_ptr_dtor()
H A Dzend_interfaces.c61 …zend_error_noreturn(E_CORE_ERROR, "Couldn't find implementation for method %s::%s", ZSTR_VAL(obj_c… in zend_call_method()
67 … zend_error_noreturn(E_CORE_ERROR, "Couldn't find implementation for function %s", function_name); in zend_call_method()
277 zend_error_noreturn(E_CORE_ERROR, "%s %s must implement interface %s as part of either %s or %s", in zend_implement_traversable()
H A Dzend_vm_execute.skl36 zend_error_noreturn(E_CORE_ERROR, "Arrived at end of main loop which shouldn't happen");
H A Dzend_objects.c181 zend_error_noreturn(E_CORE_ERROR, "Attempt to destruct pending exception"); in zend_objects_destroy_object()
H A Dzend_API.c1138 zend_error_noreturn(E_CORE_ERROR, "%s%s%s(): %s", in zend_parse_parameters_debug_error()
1342 zend_error_noreturn(E_CORE_ERROR, "%s::%s() must be derived from %s::%s()", in zend_parse_method_parameters()
1375 zend_error_noreturn(E_CORE_ERROR, "%s::%s() must be derived from %s::%s()", in zend_parse_method_parameters_ex()
2431 zend_error_noreturn(E_CORE_ERROR,"Unable to start %s module", module->name); in zend_startup_module_ex()
3104 zend_error_noreturn(E_CORE_ERROR, in zend_register_functions()
3187 scope, (zend_function *)reg_function, lowercase_name, E_CORE_ERROR); in zend_register_functions()
4535 zend_error_noreturn(ce->type == ZEND_INTERNAL_CLASS ? E_CORE_ERROR : E_COMPILE_ERROR, in zend_declare_typed_property()
4542 zend_error_noreturn(ce->type == ZEND_INTERNAL_CLASS ? E_CORE_ERROR : E_COMPILE_ERROR, in zend_declare_typed_property()
4624 zend_error_noreturn(E_CORE_ERROR, "Internal zvals cannot be refcounted"); in zend_declare_typed_property()
4862 zend_error_noreturn(ce->type == ZEND_INTERNAL_CLASS ? E_CORE_ERROR : E_COMPILE_ERROR, in zend_declare_typed_class_constant()
[all …]
H A Dzend_exceptions.c219 zend_error_noreturn(E_CORE_ERROR, "Exception thrown without a stack frame"); in zend_throw_exception_internal()
993 zend_error_noreturn(E_CORE_ERROR, "Need to supply an object when throwing an exception"); in zend_throw_exception_object()
H A Dzend_execute.c1362 zend_error_noreturn(E_CORE_ERROR, "%s() missing rc1", ZSTR_VAL(name)); in zend_verify_internal_func_info()
1365 zend_error_noreturn(E_CORE_ERROR, "%s() missing rcn", ZSTR_VAL(name)); in zend_verify_internal_func_info()
1371 zend_error_noreturn(E_CORE_ERROR, "%s() missing type %s", in zend_verify_internal_func_info()
1383 zend_error_noreturn(E_CORE_ERROR, in zend_verify_internal_func_info()
1388 zend_error_noreturn(E_CORE_ERROR, in zend_verify_internal_func_info()
1395 zend_error_noreturn(E_CORE_ERROR, in zend_verify_internal_func_info()
1472 zend_error_noreturn(E_CORE_ERROR, "%s%s%s(): Return value must be of type %s, %s returned", in zend_verify_internal_return_error()
H A Dzend.c1499 case E_CORE_ERROR: in zend_error_zstr_at()
1604 case E_CORE_ERROR: in get_filename_lineno()
H A Dzend_execute_API.c1096 zend_error_noreturn(E_CORE_ERROR, "Couldn't execute method %s%s%s", in zend_call_known_function()
H A Dzend_inheritance.c1533 …zend_error_noreturn(E_CORE_ERROR, "%s %s could not implement interface %s", zend_get_object_type_u… in do_implement_interface()
H A Dzend_vm_execute.h64214 zend_error_noreturn(E_CORE_ERROR, "Arrived at end of main loop which shouldn't happen");
/php-src/ext/standard/tests/general_functions/
H A Dparse_ini_booleans.data4 error_reporting1 = E_COMPILE_ERROR|E_RECOVERABLE_ERROR |E_ERROR|E_CORE_ERROR
/php-src/ext/pdo_odbc/
H A Dpdo_odbc.c93 …php_error_docref(NULL, E_CORE_ERROR, "Error in pdo_odbc.connection_pooling configuration. Value mu… in PHP_MINIT_FUNCTION()
/php-src/Zend/tests/
H A DErrorException_getSeverity.phpt100 throw new ErrorException(EXCEPTION_PARAM_MSG, EXCEPTION_CODE_ERROR, E_CORE_ERROR);
103 var_dump($e->getSeverity() === E_CORE_ERROR);
280 throw new ErrorException(EXCEPTION_PARAM_MSG, EXCEPTION_CODE_ERROR, E_CORE_ERROR, __FILE__);
283 var_dump($e->getSeverity() === E_CORE_ERROR);
460 …throw new ErrorException(EXCEPTION_PARAM_MSG, EXCEPTION_CODE_ERROR, E_CORE_ERROR, __FILE__, __LINE…
463 var_dump($e->getSeverity() === E_CORE_ERROR);
669 …throw new ErrorException(EXCEPTION_PARAM_MSG, EXCEPTION_CODE_ERROR, E_CORE_ERROR, __FILE__, __LINE…
672 …throw new ErrorException(EXCEPTION_PARAM_MSG, EXCEPTION_CODE_ERROR, E_CORE_ERROR, __FILE__, __LINE…
675 var_dump($e->getSeverity() === E_CORE_ERROR);
/php-src/main/
H A Dmain.c1261 case E_CORE_ERROR: in report_zend_debug_error_notify_cb()
1346 case E_CORE_ERROR: in php_error_cb()
1386 if (type == E_CORE_ERROR || type == E_CORE_WARNING) { in php_error_cb()
1431 case E_CORE_ERROR: in php_error_cb()
2344 E_CORE_ERROR, in php_module_startup()
H A Dspprintf.c334 zend_error_noreturn(E_CORE_ERROR, in xbuf_format_converter()
H A Dsnprintf.c634 zend_error_noreturn(E_CORE_ERROR, in format_converter()
/php-src/ext/standard/
H A Dbrowscap.c341 zend_error(E_CORE_ERROR, "Invalid browscap ini file: " in php_browscap_parser_cb()
/php-src/ext/zlib/
H A Dzlib.c1277 …php_error_docref("ref.outcontrol", E_CORE_ERROR, "Cannot use both zlib.output_compression and outp… in ZEND_GET_MODULE()
/php-src/
H A Dphp.ini-development465 ; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
480 ; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)
H A Dphp.ini-production467 ; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
482 ; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)
/php-src/ext/exif/
H A Dexif.c1324 zend_error(E_CORE_ERROR, "Duplicate tag %x", tag_table->Tag); in exif_make_tag_ht()

Completed in 336 milliseconds