Searched refs:exception_ce (Results 1 – 5 of 5) sorted by relevance
/PHP-7.3/Zend/ |
H A D | zend_exceptions.h | 58 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 D | zend_exceptions.c | 907 if (exception_ce) { in zend_throw_exception() 908 if (!instanceof_function(exception_ce, zend_ce_throwable)) { in zend_throw_exception() 910 exception_ce = zend_ce_exception; in zend_throw_exception() 913 exception_ce = zend_ce_exception; in zend_throw_exception() 915 object_init_ex(&ex, exception_ce); in zend_throw_exception() 925 zend_update_property_ex(exception_ce, &ex, ZSTR_KNOWN(ZEND_STR_CODE), &tmp); in zend_throw_exception() 942 obj = zend_throw_exception(exception_ce, message, code); in zend_throw_exception_ex() 951 zend_object *obj = zend_throw_exception(exception_ce, message, code); in zend_throw_error_exception() 1051 zend_class_entry *exception_ce; in zend_throw_exception_object() local 1057 exception_ce = Z_OBJCE_P(exception); in zend_throw_exception_object() [all …]
|
H A D | zend.c | 1421 ZEND_API ZEND_COLD void zend_throw_error(zend_class_entry *exception_ce, const char *format, ...) /… in zend_throw_error() argument 1426 if (exception_ce) { in zend_throw_error() 1427 if (!instanceof_function(exception_ce, zend_ce_error)) { in zend_throw_error() 1429 exception_ce = zend_ce_error; in zend_throw_error() 1432 exception_ce = zend_ce_error; in zend_throw_error() 1440 zend_throw_exception(exception_ce, message, 0); in zend_throw_error()
|
H A D | zend.h | 283 ZEND_API ZEND_COLD void zend_throw_error(zend_class_entry *exception_ce, const char *format, ...) Z…
|
H A D | zend_execute_API.c | 212 static void zend_throw_or_error(int fetch_type, zend_class_entry *exception_ce, const char *format,… in zend_throw_or_error() argument 221 zend_throw_error(exception_ce, "%s", message); in zend_throw_or_error()
|
Completed in 25 milliseconds