Home
last modified time | relevance | path

Searched refs:ex (Results 126 – 150 of 185) sorted by relevance

12345678

/php-src/Zend/tests/
H A Dgh13446_2.phpt6 $handler = function ($ex) use (&$handler, $x) {
H A Dbug40815.phpt7 static public function exh ($ex) {
/php-src/Zend/tests/try/
H A Dcatch_finally_005.phpt7 throw new Exception("ex");
H A Dcatch_finally_001.phpt9 throw new Exception("ex");
H A Dcatch_finally_006.phpt7 throw new Exception("ex");
H A Dcatch_finally_003.phpt25 throw new Exception("ex");
/php-src/Zend/
H A Dzend_builtin_functions.c171 if (ex && (ZEND_CALL_INFO(ex) & ZEND_CALL_CODE)) { in ZEND_FUNCTION()
180 RETURN_LONG(ZEND_CALL_NUM_ARGS(ex)); in ZEND_FUNCTION()
190 zend_execute_data *ex; in ZEND_FUNCTION() local
201 ex = EX(prev_execute_data); in ZEND_FUNCTION()
202 if (ex && (ZEND_CALL_INFO(ex) & ZEND_CALL_CODE)) { in ZEND_FUNCTION()
211 arg_count = ZEND_CALL_NUM_ARGS(ex); in ZEND_FUNCTION()
220 …arg = ZEND_CALL_VAR_NUM(ex, ex->func->op_array.last_var + ex->func->op_array.T) + (requested_offse… in ZEND_FUNCTION()
240 if (ex && (ZEND_CALL_INFO(ex) & ZEND_CALL_CODE)) { in ZEND_FUNCTION()
249 arg_count = ZEND_CALL_NUM_ARGS(ex); in ZEND_FUNCTION()
257 p = ZEND_CALL_ARG(ex, 1); in ZEND_FUNCTION()
[all …]
H A Dzend_vm.h30 ZEND_API int ZEND_FASTCALL zend_vm_call_opcode_handler(zend_execute_data *ex);
/php-src/ext/sodium/tests/
H A Dcrypto_scalarmult.phpt14 } catch (SodiumException $ex) {
H A Dcrypto_secretbox.phpt18 } catch (SodiumException $ex) {
H A Dcrypto_shorthash.phpt20 } catch (SodiumException $ex) {
H A Dcrypto_box.phpt51 } catch (SodiumException $ex) {
52 echo $ex->getMessage(), PHP_EOL;
/php-src/ext/com_dotnet/tests/
H A Dbug79332.phpt10 } catch (com_exception $ex) {
H A Dbug66322.phpt9 } catch (com_exception $ex) {
/php-src/ext/opcache/tests/jit/
H A Dfetch_dim_r_017.phpt20 } catch (Throwable $ex) {
/php-src/ext/calendar/tests/
H A Dcal_info.phpt13 } catch (ValueError $ex) {
14 echo "{$ex->getMessage()}\n";
/php-src/ext/opcache/tests/opt/
H A Dsccp_015.phpt14 foreach ($entity_information as $ex) {
/php-src/ext/standard/tests/file/
H A Dbug40501.phpt17 backslashes (ex: 1)\"
/php-src/.github/actions/verify-generated-files/
H A Daction.yml7 set -ex
/php-src/ext/ffi/tests/
H A Dbug79096.phpt23 } catch (FFI\Exception $ex) {
H A Dbug79532.phpt19 } catch (FFI\Exception $ex) {
H A Dgh11934b.phpt18 } catch (FFI\Exception $ex) {
H A Dbug78270_1.phpt20 } catch (FFI\ParserException $ex) {
/php-src/
H A D.gdbinit62 set $ex = $arg0
63 while $ex
64 printf "[%p] ", $ex
65 set $func = $ex->func
67 if $ex->This->value.obj
71 printf "%s->", (char*)$ex->This->value.obj->ce.name->val
87 set $count = $ex->This.u2.num_args
94 set $zvalue = (zval *) $ex + $callFrameSize + $arg
138 printf "%s:%d ", (char*)$func->op_array.filename->val, $ex->opline->lineno
143 set $ex = $ex->prev_execute_data
/php-src/ext/pdo/
H A Dpdo_dbh.c104 zval ex, info; in pdo_raise_impl_error() local
107 object_init_ex(&ex, pdo_ex); in pdo_raise_impl_error()
109 …zend_update_property_string(zend_ce_exception, Z_OBJ(ex), "message", sizeof("message")-1, message); in pdo_raise_impl_error()
110 zend_update_property_string(zend_ce_exception, Z_OBJ(ex), "code", sizeof("code")-1, *pdo_err); in pdo_raise_impl_error()
116 zend_update_property(pdo_ex, Z_OBJ(ex), "errorInfo", sizeof("errorInfo")-1, &info); in pdo_raise_impl_error()
119 zend_throw_exception_object(&ex); in pdo_raise_impl_error()
181 zval ex; in pdo_handle_error() local
184 object_init_ex(&ex, pdo_ex); in pdo_handle_error()
187 zend_update_property_string(zend_ce_exception, Z_OBJ(ex), "code", sizeof("code") - 1, *pdo_err); in pdo_handle_error()
190 zend_update_property(pdo_ex, Z_OBJ(ex), "errorInfo", sizeof("errorInfo") - 1, &info); in pdo_handle_error()
[all …]

Completed in 46 milliseconds

12345678