Home
last modified time | relevance | path

Searched refs:error_handling (Results 1 – 19 of 19) sorted by relevance

/PHP-7.1/ext/intl/spoofchecker/
H A Dspoofchecker_create.c34 zend_error_handling error_handling; in PHP_METHOD() local
41 zend_replace_error_handling(EH_THROW, IntlException_ce_ptr, &error_handling); in PHP_METHOD()
65 zend_restore_error_handling(&error_handling); in PHP_METHOD()
/PHP-7.1/ext/intl/collator/
H A Dcollator_create.c79 zend_error_handling error_handling; in PHP_METHOD() local
81 zend_replace_error_handling(EH_THROW, IntlException_ce_ptr, &error_handling); in PHP_METHOD()
88 zend_restore_error_handling(&error_handling); in PHP_METHOD()
/PHP-7.1/ext/intl/formatter/
H A Dformatter_main.c94 zend_error_handling error_handling; in PHP_METHOD() local
96 zend_replace_error_handling(EH_THROW, IntlException_ce_ptr, &error_handling); in PHP_METHOD()
103 zend_restore_error_handling(&error_handling); in PHP_METHOD()
/PHP-7.1/ext/intl/msgformat/
H A Dmsgformat.c113 zend_error_handling error_handling; in PHP_METHOD() local
115 zend_replace_error_handling(EH_THROW, IntlException_ce_ptr, &error_handling); in PHP_METHOD()
122 zend_restore_error_handling(&error_handling); in PHP_METHOD()
/PHP-7.1/ext/intl/breakiterator/
H A Drulebasedbreakiterator_methods.cpp97 zend_error_handling error_handling; in PHP_METHOD() local
99 zend_replace_error_handling(EH_THROW, IntlException_ce_ptr, &error_handling); in PHP_METHOD()
102 zend_restore_error_handling(&error_handling); in PHP_METHOD()
/PHP-7.1/ext/spl/
H A Dspl_directory.c415 zend_error_handling error_handling; in spl_filesystem_object_create_info() local
459 zend_error_handling error_handling; in spl_filesystem_object_create_type() local
682 zend_error_handling error_handling; in spl_filesystem_object_construct() local
1224 zend_error_handling error_handling; in FileInfoFunction() local
1275 zend_error_handling error_handling; in SPL_METHOD() local
1326 zend_error_handling error_handling; in SPL_METHOD() local
1344 zend_error_handling error_handling; in SPL_METHOD() local
1362 zend_error_handling error_handling; in SPL_METHOD() local
1380 zend_error_handling error_handling; in SPL_METHOD() local
2263 zend_error_handling error_handling; in SPL_METHOD() local
[all …]
H A Dspl_iterators.c486 zend_error_handling error_handling; in spl_recursive_it_it_construct() local
489 zend_replace_error_handling(EH_THROW, spl_ce_InvalidArgumentException, &error_handling); in spl_recursive_it_it_construct()
543 zend_restore_error_handling(&error_handling); in spl_recursive_it_it_construct()
591 zend_restore_error_handling(&error_handling); in spl_recursive_it_it_construct()
1075 zend_error_handling error_handling; in spl_recursive_tree_iterator_get_entry() local
1081 zend_replace_error_handling(EH_THROW, spl_ce_UnexpectedValueException, &error_handling); in spl_recursive_tree_iterator_get_entry()
1091 zend_restore_error_handling(&error_handling); in spl_recursive_tree_iterator_get_entry()
1460 zend_error_handling error_handling; in spl_dual_it_construct() local
1538 zend_replace_error_handling(EH_THROW, spl_ce_InvalidArgumentException, &error_handling); in spl_dual_it_construct()
1542 zend_restore_error_handling(&error_handling); in spl_dual_it_construct()
[all …]
/PHP-7.1/ext/intl/dateformat/
H A Ddateformat_create.cpp211 zend_error_handling error_handling; in PHP_METHOD() local
213 zend_replace_error_handling(EH_THROW, IntlException_ce_ptr, &error_handling); in PHP_METHOD()
222 zend_restore_error_handling(&error_handling); in PHP_METHOD()
/PHP-7.1/ext/intl/calendar/
H A Dgregoriancalendar_methods.cpp218 zend_error_handling error_handling; in PHP_METHOD() local
220 zend_replace_error_handling(EH_THROW, IntlException_ce_ptr, &error_handling); in PHP_METHOD()
223 zend_restore_error_handling(&error_handling); in PHP_METHOD()
/PHP-7.1/ext/intl/resourcebundle/
H A Dresourcebundle_class.c150 zend_error_handling error_handling; in ZEND_END_ARG_INFO() local
152 zend_replace_error_handling(EH_THROW, IntlException_ce_ptr, &error_handling); in ZEND_END_ARG_INFO()
159 zend_restore_error_handling(&error_handling); in ZEND_END_ARG_INFO()
/PHP-7.1/main/
H A Dphp.h309 static inline ZEND_ATTRIBUTE_DEPRECATED void php_set_error_handling(error_handling_t error_handling in BEGIN_EXTERN_C()
311 zend_replace_error_handling(error_handling, exception_class, NULL); in BEGIN_EXTERN_C()
H A Dmain.c1083 if (EG(error_handling) != EH_NORMAL) { in php_error_cb()
1105 if (EG(error_handling) == EH_THROW && !EG(exception)) { in php_error_cb()
/PHP-7.1/Zend/
H A Dzend_globals.h198 zend_error_handling_t error_handling; member
H A Dzend.h317 ZEND_API void zend_replace_error_handling(zend_error_handling_t error_handling, zend_class_entry *e…
H A Dzend_API.c4112 current->handling = EG(error_handling); in zend_save_error_handling()
4118 ZEND_API void zend_replace_error_handling(zend_error_handling_t error_handling, zend_class_entry *e… in zend_replace_error_handling() argument
4122 if (error_handling != EH_NORMAL && Z_TYPE(EG(user_error_handler)) != IS_UNDEF) { in zend_replace_error_handling()
4127 EG(error_handling) = error_handling; in zend_replace_error_handling()
4128 EG(exception_class) = error_handling == EH_THROW ? exception_class : NULL; in zend_replace_error_handling()
4160 EG(error_handling) = saved->handling; in zend_restore_error_handling()
H A Dzend.c576 executor_globals->error_handling = EH_NORMAL; in executor_globals_ctor()
1191 || EG(error_handling) != EH_NORMAL) { in zend_error()
H A Dzend_execute_API.c151 EG(error_handling) = EH_NORMAL; in init_executor()
/PHP-7.1/ext/date/
H A Dphp_date.c2820 zend_error_handling error_handling; in PHP_METHOD() local
2828 zend_restore_error_handling(&error_handling); in PHP_METHOD()
2840 zend_error_handling error_handling; in PHP_METHOD() local
2848 zend_restore_error_handling(&error_handling); in PHP_METHOD()
3825 zend_error_handling error_handling; in PHP_METHOD() local
3834 zend_restore_error_handling(&error_handling); in PHP_METHOD()
4305 zend_error_handling error_handling; in PHP_METHOD() local
4317 zend_restore_error_handling(&error_handling); in PHP_METHOD()
4568 zend_error_handling error_handling; in PHP_METHOD() local
4575 zend_restore_error_handling(&error_handling); in PHP_METHOD()
[all …]
/PHP-7.1/ext/sqlite3/
H A Dsqlite3.c1660 zend_error_handling error_handling; in PHP_METHOD() local
1671 zend_replace_error_handling(EH_THROW, NULL, &error_handling); in PHP_METHOD()
1673 zend_restore_error_handling(&error_handling); in PHP_METHOD()

Completed in 113 milliseconds