Home
last modified time | relevance | path

Searched refs:exception_ce (Results 1 – 5 of 5) sorted by relevance

/PHP-7.4/Zend/
H A Dzend_exceptions.h58 ZEND_API ZEND_COLD zend_object *zend_throw_exception(zend_class_entry *exception_ce, const char *me…
59 ZEND_API ZEND_COLD zend_object *zend_throw_exception_ex(zend_class_entry *exception_ce, zend_long c…
63 ZEND_API zend_object *zend_throw_error_exception(zend_class_entry *exception_ce, const char *messag…
H A Dzend_exceptions.c911 if (exception_ce) { in zend_throw_exception()
912 if (!instanceof_function(exception_ce, zend_ce_throwable)) { in zend_throw_exception()
914 exception_ce = zend_ce_exception; in zend_throw_exception()
917 exception_ce = zend_ce_exception; in zend_throw_exception()
919 object_init_ex(&ex, exception_ce); in zend_throw_exception()
929 zend_update_property_ex(exception_ce, &ex, ZSTR_KNOWN(ZEND_STR_CODE), &tmp); in zend_throw_exception()
946 obj = zend_throw_exception(exception_ce, message, code); in zend_throw_exception_ex()
955 zend_object *obj = zend_throw_exception(exception_ce, message, code); in zend_throw_error_exception()
1055 zend_class_entry *exception_ce; in zend_throw_exception_object() local
1061 exception_ce = Z_OBJCE_P(exception); in zend_throw_exception_object()
[all …]
H A Dzend.c1531 ZEND_API ZEND_COLD void zend_throw_error(zend_class_entry *exception_ce, const char *format, ...) /… in zend_throw_error() argument
1536 if (exception_ce) { in zend_throw_error()
1537 if (!instanceof_function(exception_ce, zend_ce_error)) { in zend_throw_error()
1539 exception_ce = zend_ce_error; in zend_throw_error()
1542 exception_ce = zend_ce_error; in zend_throw_error()
1555 zend_throw_exception(exception_ce, message, 0); in zend_throw_error()
H A Dzend.h304 ZEND_API ZEND_COLD void zend_throw_error(zend_class_entry *exception_ce, const char *format, ...) Z…
H A Dzend_execute_API.c217 static ZEND_COLD void zend_throw_or_error(int fetch_type, zend_class_entry *exception_ce, const cha… in zend_throw_or_error() argument
226 zend_throw_error(exception_ce, "%s", message); in zend_throw_or_error()

Completed in 21 milliseconds