Home
last modified time | relevance | path

Searched refs:exception (Results 751 – 775 of 852) sorted by relevance

1...<<3132333435

/PHP-8.1/Zend/
H A Dzend_globals.h225 zend_object *exception, *prev_exception; member
H A Dzend_API.c260 if (EG(exception)) { in zend_wrong_parameter_type_error()
276 if (EG(exception)) { in zend_wrong_parameter_class_error()
286 if (EG(exception)) { in zend_wrong_parameter_class_or_null_error()
296 if (EG(exception)) { in zend_wrong_parameter_class_or_long_error()
306 if (EG(exception)) { in zend_wrong_parameter_class_or_long_or_null_error()
316 if (EG(exception)) { in zend_wrong_parameter_class_or_string_error()
326 if (EG(exception)) { in zend_wrong_parameter_class_or_string_or_null_error()
336 if (!EG(exception)) { in zend_wrong_callback_error()
345 if (!EG(exception)) { in zend_wrong_callback_or_null_error()
365 if (EG(exception)) { in zend_argument_error_variadic()
[all …]
H A Dzend_vm_execute.h2208 if (!EG(exception)) { in ZEND_SEND_UNPACK_SPEC_HANDLER()
2572 if (!EG(exception)) { in ZEND_ADD_ARRAY_UNPACK_SPEC_HANDLER()
2865 if (!EG(exception)) { in ZEND_EXIT_SPEC_HANDLER()
3031 EG(exception) = NULL; in zend_dispatch_try_catch_finally_helper_SPEC()
3551 if (EG(exception)) { in zend_interrupt_helper_SPEC()
4618 zend_object *exception; in ZEND_CATCH_SPEC_CONST_HANDLER() local
4632 ce = EG(exception)->ce; in ZEND_CATCH_SPEC_CONST_HANDLER()
4650 exception = EG(exception); in ZEND_CATCH_SPEC_CONST_HANDLER()
4651 EG(exception) = NULL; in ZEND_CATCH_SPEC_CONST_HANDLER()
4660 OBJ_RELEASE(exception); in ZEND_CATCH_SPEC_CONST_HANDLER()
[all …]
/PHP-8.1/ext/intl/dateformat/
H A Ddateformat_create.cpp222 if (!EG(exception)) { in PHP_METHOD()
/PHP-8.1/ext/standard/tests/file/
H A Dfscanf_variation18.phpt73 } catch (ValueError $exception) {
74 echo $exception->getMessage() . "\n";
H A Dfscanf_variation2.phpt67 } catch (ValueError $exception) {
68 echo $exception->getMessage() . "\n";
H A Dfscanf_variation20.phpt71 } catch (ValueError $exception) {
72 echo $exception->getMessage() . "\n";
H A Dfscanf_variation27.phpt72 } catch (ValueError $exception) {
73 echo $exception->getMessage() . "\n";
H A Dfscanf_variation45.phpt67 } catch (ValueError $exception) {
68 echo $exception->getMessage() . "\n";
H A Dfscanf_variation9.phpt74 } catch (ValueError $exception) {
75 echo $exception->getMessage() . "\n";
H A Dfscanf_variation24.phpt71 } catch (ValueError $exception) {
72 echo $exception->getMessage() . "\n";
H A Dfscanf_variation33.phpt78 } catch (ValueError $exception) {
79 echo $exception->getMessage() . "\n";
H A Dfscanf_variation39.phpt73 } catch (ValueError $exception) {
74 echo $exception->getMessage() . "\n";
H A Dfscanf_variation14.phpt99 } catch (ValueError $exception) {
100 echo $exception->getMessage() . "\n";
/PHP-8.1/sapi/cli/
H A Dphp_cli.c1082 if (EG(exception)) { in do_cli()
1084 …zval *msg = zend_read_property(zend_ce_exception, EG(exception), "message", sizeof("message")-1, 0… in do_cli()
1086 zend_object_release(EG(exception)); in do_cli()
1087 EG(exception) = NULL; in do_cli()
/PHP-8.1/sapi/fpm/tests/
H A Dtester.inc754 } catch (\Exception $exception) {
758 $this->error("Request failed", $exception);
830 } catch (\Exception $exception) {
832 $this->error("Request failed", $exception);
1343 * @param \Exception|null $exception
1347 private function error($msg, \Exception $exception = null): bool
1350 if ($exception) {
1351 $this->error .= '; EXCEPTION: ' . $exception->getMessage();
1439 } catch (LogTimoutException $exception) {
1440 $this->error('Log is not closed and timed out', $exception);
/PHP-8.1/sapi/phpdbg/
H A Dphpdbg_utils.c611 PHPDBG_API bool phpdbg_check_caught_ex(zend_execute_data *execute_data, zend_object *exception) { in phpdbg_check_caught_ex() argument
641 if (ce == exception->ce || (ce && instanceof_function(exception->ce, ce))) { in phpdbg_check_caught_ex()
/PHP-8.1/ext/filter/
H A Dfilter.c518 if (EG(exception)) { in PHP_FUNCTION()
671 if (EG(exception)) { in PHP_FUNCTION()
760 if (EG(exception)) { in PHP_FUNCTION()
/PHP-8.1/ext/session/
H A Dsession.c165 if (!EG(exception)) { in php_session_destroy()
400 if (!EG(exception)) { in php_session_initialize()
414 if (!EG(exception)) { in php_session_initialize()
447 if (!EG(exception)) { in php_session_initialize()
497 if ((ret == FAILURE) && !EG(exception)) { in php_session_save_current_state()
1760 if (EG(exception)) { in PHP_FUNCTION()
2203 if (!EG(exception)) { in PHP_FUNCTION()
2236 if (!EG(exception)) { in PHP_FUNCTION()
2245 if (!EG(exception)) { in PHP_FUNCTION()
2260 if (!EG(exception)) { in PHP_FUNCTION()
[all …]
/PHP-8.1/ext/spl/
H A Dphp_spl.c280 if (!EG(exception)) { in spl_autoload()
318 while (pos && *pos && !EG(exception)) { in PHP_FUNCTION()
447 if (EG(exception)) { in spl_perform_autoload()
/PHP-8.1/ext/spl/tests/
H A Dbug55701.phpt33 echo "threw other exception (unexpected)\n";
243 // This must not throw an exception
/PHP-8.1/ext/json/
H A Djson_encoder.c545 if (!EG(exception)) { in php_json_encode_serializable_object()
557 if (EG(exception)) { in php_json_encode_serializable_object()
/PHP-8.1/ext/mysqli/tests/
H A Dmysqli_driver.phpt85 …printf("[015] Error reporting mode has not been switched to exceptions and or no exception thrown\…
/PHP-8.1/ext/pdo_oci/tests/
H A Dpdo_oci_stream_2.phpt19 $query = "begin execute immediate 'drop table pdo_oci_stream_2'; exception when others then if sqlc…
/PHP-8.1/ext/readline/
H A Dreadline_cli.c709 if (EG(exception)) { in readline_shell_run()
710 zend_exception_error(EG(exception), E_WARNING); in readline_shell_run()

Completed in 198 milliseconds

1...<<3132333435