Home
last modified time | relevance | path

Searched refs:zend_error_noreturn (Results 1 – 25 of 44) sorted by last modified time

12

/php-src/ext/zend_test/
H A Dtest.c451 zend_error_noreturn(E_ERROR, "Unknown class '%s'", Z_STRVAL_P(class_or_object)); in ZEND_FUNCTION()
/php-src/ext/ffi/
H A Dffi.c981 zend_error_noreturn(E_ERROR, "Throwing from FFI callbacks is not allowed"); in zend_ffi_callback_trampoline()
/php-src/Zend/
H A Dzend_attributes.c74 zend_error_noreturn(E_ERROR, "Cannot apply #[AllowDynamicProperties] to trait"); in validate_allow_dynamic_properties()
77 zend_error_noreturn(E_ERROR, "Cannot apply #[AllowDynamicProperties] to interface"); in validate_allow_dynamic_properties()
80 zend_error_noreturn(E_ERROR, "Cannot apply #[AllowDynamicProperties] to readonly class %s", in validate_allow_dynamic_properties()
455 zend_error_noreturn(E_ERROR, "Only internal classes can be registered as compiler attribute"); in zend_mark_internal_attribute()
473zend_error_noreturn(E_ERROR, "Classes must be first marked as attribute before being able to be re… in zend_mark_internal_attribute()
H A Dzend_inheritance.c259 zend_error_noreturn( in lookup_class_ex()
1271 zend_error_noreturn(E_COMPILE_ERROR, in emit_incompatible_property_error()
1296 zend_error_noreturn(E_COMPILE_ERROR, in do_inherit_property()
1326 zend_error_noreturn(E_COMPILE_ERROR, in do_inherit_property()
1387 zend_error_noreturn(E_COMPILE_ERROR, in emit_incompatible_class_constant_error()
1734 zend_error_noreturn(E_COMPILE_ERROR, in do_inherit_constant_check()
2183 zend_error_noreturn(E_COMPILE_ERROR, in zend_traits_init_trait_structures()
2219 zend_error_noreturn(E_COMPILE_ERROR, in zend_traits_init_trait_structures()
2283 zend_error_noreturn(E_COMPILE_ERROR, in zend_traits_init_trait_structures()
2371 zend_error_noreturn(E_COMPILE_ERROR, in emit_incompatible_trait_constant_error()
[all …]
H A Dzend_operators.c1481 zend_error_noreturn(E_ERROR, "Modulo by zero"); in mod_function()
1894 zend_error_noreturn(E_ERROR, "Bit shift by negative number"); in shift_left_function()
1931 zend_error_noreturn(E_ERROR, "Bit shift by negative number"); in shift_right_function()
H A Dzend_compile.c106 zend_error_noreturn(E_COMPILE_ERROR, in zend_stack_limit_error()
236 zend_error_noreturn(E_COMPILE_ERROR, in zend_assert_valid_class_name()
1093 zend_error_noreturn(E_COMPILE_ERROR, in zend_resolve_class_name()
1097 zend_error_noreturn(E_COMPILE_ERROR, in zend_resolve_class_name()
1480 zend_error_noreturn(E_COMPILE_ERROR, in zend_mark_function_as_generator()
1500 zend_error_noreturn(E_COMPILE_ERROR, in zend_mark_function_as_generator()
1708 zend_error_noreturn(E_COMPILE_ERROR, in zend_resolve_const_class_name_reference()
1724 zend_error_noreturn(E_COMPILE_ERROR, in zend_ensure_valid_class_fetch_type()
3339 zend_error_noreturn(E_COMPILE_ERROR, in zend_ensure_writable_variable()
8097 zend_error_noreturn( in zend_compile_class_const_decl()
[all …]
H A Dzend_API.c1132 zend_error_noreturn(E_CORE_ERROR, "%s%s%s(): %s", in zend_parse_parameters_debug_error()
1336 zend_error_noreturn(E_CORE_ERROR, "%s::%s() must be derived from %s::%s()", in zend_parse_method_parameters()
1369 zend_error_noreturn(E_CORE_ERROR, "%s::%s() must be derived from %s::%s()", in zend_parse_method_parameters_ex()
2363 zend_error_noreturn(E_CORE_ERROR,"Unable to start %s module", module->name); in zend_startup_module_ex()
2684 zend_error_noreturn(error_type, "Method %s::%s() cannot declare a return type", in zend_check_magic_method_no_return_type()
2928zend_error_noreturn(E_CORE_ERROR, "Cannot declare a return type of %s outside of a class scope", t… in zend_register_functions()
3031 zend_error_noreturn(E_CORE_ERROR, in zend_register_functions()
4500 zend_error_noreturn(E_CORE_ERROR, "Internal zvals cannot be refcounted"); in zend_declare_typed_property()
4731zend_error_noreturn(E_COMPILE_ERROR, "Access type for interface constant %s::%s must be public", Z… in zend_declare_typed_class_constant()
4736 zend_error_noreturn(ce->type == ZEND_INTERNAL_CLASS ? E_CORE_ERROR : E_COMPILE_ERROR, in zend_declare_typed_class_constant()
[all …]
H A Dzend_alloc.c379 zend_error_noreturn(E_ERROR, in zend_mm_safe_error()
709 zend_error_noreturn(E_ERROR, "huge_pages: thp unsupported on this platform");
1386zend_error_noreturn(E_ERROR, "Possible integer overflow in memory allocation (%zu + %zu)", ZEND_MM…
1830zend_error_noreturn(E_ERROR, "Possible integer overflow in memory allocation (%zu + %zu)", size, a…
2665zend_error_noreturn(E_ERROR, "Possible integer overflow in memory allocation (1 * %zu + 1)", lengt…
2677zend_error_noreturn(E_ERROR, "Possible integer overflow in memory allocation (1 * %zu + 1)", lengt…
2692zend_error_noreturn(E_ERROR, "Possible integer overflow in memory allocation (1 * %zu + 1)", lengt…
H A Dzend_strtod.c594 zend_error_noreturn(E_ERROR, "Balloc() failed to allocate memory");
607 zend_error_noreturn(E_ERROR, "Balloc() failed to allocate memory");
H A Dzend.c1668 ZEND_API ZEND_COLD ZEND_NORETURN void zend_error_noreturn(int type, const char *format, ...) in zend_error_noreturn() function
1693 zend_error_noreturn(type, "%s: %s (%d)", message, buf, errn); in zend_strerror_noreturn()
1758 zend_error_noreturn(E_ERROR, "%s", message); in zend_throw_error()
H A Dzend_execute_API.c244 zend_error_noreturn(E_ERROR, "%s", message); in zend_throw_or_error()
1068 zend_error_noreturn(E_CORE_ERROR, "Couldn't execute method %s%s%s", in zend_call_known_function()
1404zend_error_noreturn(E_ERROR, "Maximum execution time of " ZEND_LONG_FMT " second%s exceeded", EG(t… in zend_timeout()
1530 zend_error_noreturn(E_ERROR, "Could not delete queued timer"); in zend_timeout_handler()
1540 zend_error_noreturn(E_ERROR, "Could not queue new timer"); in zend_timeout_handler()
1623 zend_error_noreturn(E_ERROR, "Could not delete queued timer"); in zend_unset_timeout()
H A Dzend_execute.c1302 zend_error_noreturn(E_ERROR, "Arginfo / zpp mismatch during call of %s%s%s()", in zend_internal_call_arginfo_violation()
1323 zend_error_noreturn(E_CORE_ERROR, "%s() missing rc1", ZSTR_VAL(name)); in zend_verify_internal_func_info()
1326 zend_error_noreturn(E_CORE_ERROR, "%s() missing rcn", ZSTR_VAL(name)); in zend_verify_internal_func_info()
1332 zend_error_noreturn(E_CORE_ERROR, "%s() missing type %s", in zend_verify_internal_func_info()
1344 zend_error_noreturn(E_CORE_ERROR, in zend_verify_internal_func_info()
1349 zend_error_noreturn(E_CORE_ERROR, in zend_verify_internal_func_info()
1356 zend_error_noreturn(E_CORE_ERROR, in zend_verify_internal_func_info()
1433 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_signal.c258 zend_error_noreturn(E_ERROR, "Error installing signal handler for %d", signo); in zend_sigaction()
309 zend_error_noreturn(E_ERROR, "Error installing signal handler for %d", signo); in zend_signal_register()
H A Dzend_object_handlers.c186 zend_error_noreturn(E_ERROR, ZEND_DEBUGINFO_FUNC_NAME "() must return an array"); in zend_std_get_debug_info()
1757 zend_error_noreturn(E_ERROR, "Nesting level too deep - recursive dependency?"); in zend_std_compare_objects()
H A Dzend_vm_execute.h8903 zend_error_noreturn(E_ERROR, "Integer overflow in memory allocation"); in ZEND_CONCAT_SPEC_CONST_TMPVAR_HANDLER()
11290 zend_error_noreturn(E_ERROR, "Integer overflow in memory allocation"); in ZEND_CONCAT_SPEC_CONST_CV_HANDLER()
15329 zend_error_noreturn(E_ERROR, "Integer overflow in memory allocation"); in ZEND_CONCAT_SPEC_TMPVAR_CONST_HANDLER()
16774 zend_error_noreturn(E_ERROR, "Integer overflow in memory allocation"); in ZEND_CONCAT_SPEC_TMPVAR_TMPVAR_HANDLER()
18496 zend_error_noreturn(E_ERROR, "Integer overflow in memory allocation"); in ZEND_CONCAT_SPEC_TMPVAR_CV_HANDLER()
40942 zend_error_noreturn(E_ERROR, "Integer overflow in memory allocation"); in ZEND_CONCAT_SPEC_CV_CONST_HANDLER()
44812 zend_error_noreturn(E_ERROR, "Integer overflow in memory allocation"); in ZEND_CONCAT_SPEC_CV_TMPVAR_HANDLER()
50177 zend_error_noreturn(E_ERROR, "Integer overflow in memory allocation"); in ZEND_CONCAT_SPEC_CV_CV_HANDLER()
53571zend_error_noreturn(E_ERROR, "Invalid opcode %d/%d/%d.", OPLINE->opcode, OPLINE->op1_type, OPLINE-… in ZEND_NULL_HANDLER()
62743 zend_error_noreturn(E_CORE_ERROR, "Arrived at end of main loop which shouldn't happen");
H A Dzend_vm_def.h412 zend_error_noreturn(E_ERROR, "Integer overflow in memory allocation");
H A Dzend_objects.c160 zend_error_noreturn(E_CORE_ERROR, "Attempt to destruct pending exception"); in zend_objects_destroy_object()
H A Dzend_enum.c31zend_error_noreturn(E_COMPILE_ERROR, "Enum %s cannot include magic method %s", ZSTR_VAL(ce->name),…
75 zend_error_noreturn(E_COMPILE_ERROR, "Enum %s cannot include properties", in zend_verify_enum_properties()
107zend_error_noreturn(E_COMPILE_ERROR, "Enum %s cannot include magic method %s", ZSTR_VAL(ce->name),… in zend_verify_enum_magic_methods()
115 zend_error_noreturn(E_COMPILE_ERROR, in zend_verify_enum_interfaces()
133 zend_error_noreturn(E_ERROR, "Non-enum class %s cannot implement interface %s", in zend_implement_unit_enum()
143 zend_error_noreturn(E_ERROR, "Non-enum class %s cannot implement interface %s", in zend_implement_backed_enum()
150 zend_error_noreturn(E_ERROR, "Non-backed enum %s cannot implement interface %s", in zend_implement_backed_enum()
428zend_error_noreturn(E_COMPILE_ERROR, "Cannot redeclare %s::%s()", ZSTR_VAL(ce->name), ZSTR_VAL(nam… in zend_enum_register_func()
H A Dzend_opcode.c686 zend_error_noreturn(E_COMPILE_ERROR, "jump into a finally block is disallowed"); in zend_check_finally_breakout()
694 zend_error_noreturn(E_COMPILE_ERROR, "jump out of a finally block is disallowed"); in zend_check_finally_breakout()
H A Dzend.h349 ZEND_API ZEND_COLD ZEND_NORETURN void zend_error_noreturn(int type, const char *format, ...) ZEND_A…
H A Dzend_exceptions.c73 zend_error_noreturn(E_ERROR, in zend_implement_throwable()
216 zend_error_noreturn(E_CORE_ERROR, "Exception thrown without a stack frame"); in zend_throw_exception_internal()
982 zend_error_noreturn(E_ERROR, in zend_exception_uncaught_error()
989 zend_error_noreturn(E_CORE_ERROR, "Need to supply an object when throwing an exception"); in zend_throw_exception_object()
/php-src/ext/pgsql/
H A Dpgsql.c3346 zend_error_noreturn(E_ERROR, "Out of memory"); in PHP_FUNCTION()
/php-src/ext/opcache/
H A Dzend_accelerator_util_funcs.c181 zend_error_noreturn(E_ERROR, "Cannot redeclare function %s() (previously declared in %s:%d)", in _zend_accel_function_hash_copy()
186zend_error_noreturn(E_ERROR, "Cannot redeclare function %s()", ZSTR_VAL(function1->common.function… in _zend_accel_function_hash_copy()
/php-src/main/
H A Doutput.c599 zend_error_noreturn(E_ERROR, "Cannot register an output handler conflict outside of MINIT"); in php_output_handler_conflict_register()
616zend_error_noreturn(E_ERROR, "Cannot register a reverse output handler conflict outside of MINIT"); in php_output_handler_reverse_conflict_register()
653 zend_error_noreturn(E_ERROR, "Cannot register an output handler alias outside of MINIT"); in php_output_handler_alias_register()
/php-src/ext/date/
H A Dphp_date.c1735 zend_error_noreturn(E_ERROR, "DateTimeInterface can't be implemented by user classes"); in implement_date_interface_handler()

Completed in 351 milliseconds

12