Searched defs:exception (Results 1 - 8 of 8) sorted by relevance

/PHP_TRUNK/Zend/
H A Dzend_globals.h241 zval *exception, *prev_exception; member in struct:_zend_executor_globals
H A Dzend.h851 zend_class_entry *exception; member in struct:__anon7
H A Dzend_generators.c350 /* If an exception was thrown in the generator we have to internally
352 if (UNEXPECTED(EG(exception) != NULL)) {
501 /* {{{ proto mixed Generator::throw(Exception $exception)
502 * Throws an exception into the generator */
505 zval *exception, *exception_copy; local
508 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z", &exception) == FAILURE) {
513 MAKE_COPY_ZVAL(&exception, exception_copy);
518 /* Throw the exception in the context of the generator */
532 /* If the generator is already closed throw the exception in the
668 ZEND_ARG_INFO(0, exception)
[all...]
H A Dzend_exceptions.c37 void zend_exception_set_previous(zval *exception, zval *add_previous TSRMLS_DC) argument
41 if (exception == add_previous || !add_previous || !exception) {
45 zend_error(E_ERROR, "Cannot set non exception as previous exception");
48 while (exception && exception != add_previous && Z_OBJ_HANDLE_P(exception) != Z_OBJ_HANDLE_P(add_previous)) {
49 previous = zend_read_property(default_exception_ce, exception, "previous", sizeof("previous")-1, 1 TSRMLS_CC);
51 zend_update_property(default_exception_ce, exception, "previou
579 zval message, file, line, *trace, *exception; local
797 zend_exception_error(zval *exception, int severity TSRMLS_DC) argument
[all...]
H A Dzend_vm_def.h1795 if (UNEXPECTED(EG(exception) != NULL)) {
1865 if (UNEXPECTED(EG(exception) != NULL)) {
1885 if (UNEXPECTED(EG(exception) != NULL) && EX(call)->is_ctor_call) {
1903 if (UNEXPECTED(EG(exception) != NULL)) {
1935 if (UNEXPECTED(EG(exception) != NULL)) {
1947 if (UNEXPECTED(EG(exception) != NULL)) {
1983 if (EXPECTED(EG(exception) == NULL)) {
2023 if (EXPECTED(EG(exception) == NULL)) {
2068 if (UNEXPECTED(EG(exception) != NULL) && EX(call)->is_ctor_call) {
2087 if (UNEXPECTED(EG(exception) !
2962 zval *exception; variable
2977 ALLOC_ZVAL(exception); variable
2980 zval_copy_ctor(exception); variable
2993 zval *exception; variable
3044 EG(exception) = NULL; variable
[all...]
H A Dzend_vm_execute.h378 if (EG(exception)) {
419 if (UNEXPECTED(EG(exception) != NULL)) {
439 if (UNEXPECTED(EG(exception) != NULL) && EX(call)->is_ctor_call) {
457 if (UNEXPECTED(EG(exception) != NULL)) {
489 if (UNEXPECTED(EG(exception) != NULL)) {
501 if (UNEXPECTED(EG(exception) != NULL)) {
537 if (EXPECTED(EG(exception) == NULL)) {
577 if (EXPECTED(EG(exception) == NULL)) {
622 if (UNEXPECTED(EG(exception) != NULL) && EX(call)->is_ctor_call) {
641 if (UNEXPECTED(EG(exception) !
2445 zval *exception; local
7091 zval *exception; local
7752 zval *exception; local
12973 zval *exception; local
30608 zval *exception; local
[all...]
/PHP_TRUNK/ext/sqlite3/
H A Dphp_sqlite3_structs.h82 zend_bool exception; member in struct:_php_sqlite3_db_object
/PHP_TRUNK/ext/soap/
H A Dsoap.c108 if (EG(exception) == NULL || \
109 Z_TYPE_P(EG(exception)) != IS_OBJECT || \
110 !instanceof_function(Z_OBJCE_P(EG(exception)), soap_fault_class_entry TSRMLS_CC)) {\
928 len = spprintf(&str, 0, "SoapFault exception: [%s] %s in %s:%ld\nStack trace:\n%s",
1644 if (EG(exception)) {
1646 if (Z_TYPE_P(EG(exception)) == IS_OBJECT &&
1647 instanceof_function(Z_OBJCE_P(EG(exception)), soap_fault_class_entry TSRMLS_CC)) {
1648 soap_server_fault_ex(function, EG(exception), NULL TSRMLS_CC);
1696 if (EG(exception)) {
1698 if (Z_TYPE_P(EG(exception))
2151 zval *fault, *exception; local
2800 zval *exception; local
[all...]

Completed in 44 milliseconds