Home
last modified time | relevance | path

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

/PHP-5.5/Zend/
H A Dzend_exceptions.c61 if (EG(prev_exception)) { in zend_exception_save()
62 zend_exception_set_previous(EG(exception), EG(prev_exception) TSRMLS_CC); in zend_exception_save()
65 EG(prev_exception) = EG(exception); in zend_exception_save()
73 if (EG(prev_exception)) { in zend_exception_restore()
75 zend_exception_set_previous(EG(exception), EG(prev_exception) TSRMLS_CC); in zend_exception_restore()
77 EG(exception) = EG(prev_exception); in zend_exception_restore()
79 EG(prev_exception) = NULL; in zend_exception_restore()
131 if (EG(prev_exception)) { in zend_clear_exception()
132 zval_ptr_dtor(&EG(prev_exception)); in zend_clear_exception()
133 EG(prev_exception) = NULL; in zend_clear_exception()
H A Dzend_globals.h241 zval *exception, *prev_exception; member
H A Dzend_vm_def.h5399 if (EG(prev_exception) != NULL) {
5401 zval_ptr_dtor(&EG(prev_exception));
5402 EG(prev_exception) = NULL;
5413 UNEXPECTED(EG(prev_exception) != NULL)) {
H A Dzend_execute_API.c184 EG(prev_exception) = NULL; in init_executor()
H A Dzend_vm_execute.h1131 if (EG(prev_exception) != NULL) { in ZEND_DISCARD_EXCEPTION_SPEC_HANDLER()
1133 zval_ptr_dtor(&EG(prev_exception)); in ZEND_DISCARD_EXCEPTION_SPEC_HANDLER()
1134 EG(prev_exception) = NULL; in ZEND_DISCARD_EXCEPTION_SPEC_HANDLER()
1145 UNEXPECTED(EG(prev_exception) != NULL)) { in ZEND_FAST_CALL_SPEC_HANDLER()

Completed in 120 milliseconds