Home
last modified time | relevance | path

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

/PHP-7.1/Zend/
H A Dzend_exceptions.h59 ZEND_API ZEND_COLD zend_object *zend_throw_exception(zend_class_entry *exception_ce, const char *me…
60 ZEND_API ZEND_COLD zend_object *zend_throw_exception_ex(zend_class_entry *exception_ce, zend_long c…
64 ZEND_API zend_object *zend_throw_error_exception(zend_class_entry *exception_ce, const char *messag…
H A Dzend_exceptions.c914 if (exception_ce) { in zend_throw_exception()
915 if (!instanceof_function(exception_ce, zend_ce_throwable)) { in zend_throw_exception()
917 exception_ce = zend_ce_exception; in zend_throw_exception()
920 exception_ce = zend_ce_exception; in zend_throw_exception()
922 object_init_ex(&ex, exception_ce); in zend_throw_exception()
932 zend_update_property_ex(exception_ce, &ex, CG(known_strings)[ZEND_STR_CODE], &tmp); in zend_throw_exception()
949 obj = zend_throw_exception(exception_ce, message, code); in zend_throw_exception_ex()
958 zend_object *obj = zend_throw_exception(exception_ce, message, code); in zend_throw_error_exception()
1057 zend_class_entry *exception_ce; in zend_throw_exception_object() local
1063 exception_ce = Z_OBJCE_P(exception); in zend_throw_exception_object()
[all …]
H A Dzend.c1335 ZEND_API ZEND_COLD void zend_throw_error(zend_class_entry *exception_ce, const char *format, ...) /… in zend_throw_error() argument
1340 if (exception_ce) { in zend_throw_error()
1341 if (!instanceof_function(exception_ce, zend_ce_error)) { in zend_throw_error()
1343 exception_ce = zend_ce_error; in zend_throw_error()
1346 exception_ce = zend_ce_error; in zend_throw_error()
1354 zend_throw_exception(exception_ce, message, 0); in zend_throw_error()
H A Dzend.h271 ZEND_API ZEND_COLD void zend_throw_error(zend_class_entry *exception_ce, const char *format, ...) Z…
H A Dzend_execute_API.c214 static void zend_throw_or_error(int fetch_type, zend_class_entry *exception_ce, const char *format,… in zend_throw_or_error() argument
223 zend_throw_error(exception_ce, "%s", message); in zend_throw_or_error()

Completed in 21 milliseconds