Searched defs:exception (Results 1 - 8 of 8) sorted by relevance
| /PHP_5_5/Zend/ |
| H A D | zend_globals.h | 241 zval *exception, *prev_exception; member in struct:_zend_executor_globals
|
| H A D | zend.h | 851 zend_class_entry *exception; member in struct:__anon7
|
| H A D | zend_generators.c | 350 /* 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 D | zend_vm_def.h | 1797 if (UNEXPECTED(EG(exception) != NULL)) { 1867 if (UNEXPECTED(EG(exception) != NULL)) { 1887 if (UNEXPECTED(EG(exception) != NULL) && EX(call)->is_ctor_call) { 1905 if (UNEXPECTED(EG(exception) != NULL)) { 1981 if (EXPECTED(EG(exception) == NULL)) { 2019 if (EXPECTED(EG(exception) == NULL)) { 2064 if (UNEXPECTED(EG(exception) != NULL) && EX(call)->is_ctor_call) { 2083 if (UNEXPECTED(EG(exception) != NULL)) { 2120 if (UNEXPECTED(EG(exception) != NULL)) { 2150 if (UNEXPECTED(EG(exception) ! 2955 zval *exception; variable 2970 ALLOC_ZVAL(exception); variable 2973 zval_copy_ctor(exception); variable 2986 zval *exception; variable 3037 EG(exception) = NULL; variable [all...] |
| H A D | zend_vm_execute.h | 378 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)) { 533 if (EXPECTED(EG(exception) == NULL)) { 571 if (EXPECTED(EG(exception) == NULL)) { 616 if (UNEXPECTED(EG(exception) != NULL) && EX(call)->is_ctor_call) { 635 if (UNEXPECTED(EG(exception) != NULL)) { 982 /* If the exception was thrown during a function call there might be 1119 /* discard the previously thrown exception */ 2436 zval *exception; local 7083 zval *exception; local 7743 zval *exception; local 12964 zval *exception; local 30587 zval *exception; local [all...] |
| H A D | zend_exceptions.c | 37 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...] |
| /PHP_5_5/ext/sqlite3/ |
| H A D | php_sqlite3_structs.h | 82 zend_bool exception; member in struct:_php_sqlite3_db_object
|
| /PHP_5_5/ext/soap/ |
| H A D | soap.c | 108 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 45 milliseconds