Home
last modified time | relevance | path

Searched refs:zend_call_function (Results 1 – 25 of 26) sorted by last modified time

12

/php-src/Zend/
H A Dzend_API.h821 ZEND_API zend_result zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache);
829 return zend_call_function(fci, fci_cache); in zend_call_function_with_return_value()
H A Dzend_API.c4362 result = zend_call_function(fci, fcc); in zend_fcall_info_call()
H A Dzend_execute_API.c767 return zend_call_function(&fci, NULL); in _call_user_function_impl()
771 zend_result zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache) /* {{{ */ in zend_call_function() function
1065 zend_result result = zend_call_function(&fci, &fcic); in zend_call_known_function()
1107 return zend_call_function(&fci, &fcc); in zend_call_method_if_exists()
H A Dzend_closures.c163 zend_call_function(&fci, &fci_cache); in ZEND_METHOD()
202 zend_call_function(&fci, &fci_cache); in ZEND_METHOD()
323 zend_call_function(&fci, &fcc); in ZEND_NAMED_FUNCTION()
H A Dzend_fibers.c601 zend_call_function(&fiber->fci, &fiber->fci_cache); in zend_fiber_execute()
H A Dzend_exceptions.c677 zend_call_function(&fci, NULL); in ZEND_METHOD()
/php-src/ext/ffi/
H A Dffi.c967 if (zend_call_function(&fci, &callback_data->fcc) != SUCCESS) { in zend_ffi_callback_trampoline()
/php-src/ext/phar/
H A Dutil.c1443 if (FAILURE == zend_call_function(&fci, &fcc)) { in phar_call_openssl_signverify()
H A Dphar_object.c691 if (FAILURE == zend_call_function(&rewrite_fci, &rewrite_fcc)) { in PHP_METHOD()
/php-src/main/
H A DSAPI.c147 error = zend_call_function(&fci, &SG(fci_cache)); in sapi_run_header_callback()
H A Doutput.c955 …if (SUCCESS == zend_call_function(&handler->func.user->fci, &handler->func.user->fcc) && PHP_OUTPU… in php_output_handler_op()
/php-src/ext/standard/
H A Darray.c827 …call_failed = zend_call_function(&BG(user_compare_fci), &BG(user_compare_fci_cache)) == FAILURE ||… in php_array_user_compare_unstable()
846 …call_failed = zend_call_function(&BG(user_compare_fci), &BG(user_compare_fci_cache)) == FAILURE ||… in php_array_user_compare_unstable()
953 …call_failed = zend_call_function(&BG(user_compare_fci), &BG(user_compare_fci_cache)) == FAILURE ||… in php_array_user_key_compare_unstable()
981 …call_failed = zend_call_function(&BG(user_compare_fci), &BG(user_compare_fci_cache)) == FAILURE ||… in php_array_user_key_compare_unstable()
1559 result = zend_call_function(&fci, &context->fci_cache); in php_array_walk()
5051 …if (zend_call_function(&BG(user_compare_fci), &BG(user_compare_fci_cache)) == SUCCESS && Z_TYPE(re…
6479 if (zend_call_function(&fci, &fci_cache) == SUCCESS && Z_TYPE(retval) != IS_UNDEF) {
6550 if (zend_call_function(&fci, &fci_cache) == SUCCESS) {
6626 ret = zend_call_function(&fci, &fci_cache);
6738 if (zend_call_function(&fci, &fci_cache) != SUCCESS || Z_TYPE(result) == IS_UNDEF) {
H A Dvar_unserializer.re278 if (zend_call_function(&fci, &fci_cache) == FAILURE || Z_ISUNDEF(retval)) {
H A Dbasic_functions.c1463 if (zend_call_function(&fci, &fci_cache) == SUCCESS && Z_TYPE(retval) != IS_UNDEF) {
1489 if (zend_call_function(&fci, &fci_cache) == SUCCESS && Z_TYPE(retval) != IS_UNDEF) {
1524 if (zend_call_function(&fci, &fci_cache) == SUCCESS && Z_TYPE(retval) != IS_UNDEF) {
1557 if (zend_call_function(&fci, &fci_cache) == SUCCESS && Z_TYPE(retval) != IS_UNDEF) {
1607 …call_status = zend_call_function(&shutdown_function_entry->fci, &shutdown_function_entry->fci_cach…
1625 zend_call_function(&tick_fe->fci, &tick_fe->fci_cache);
/php-src/ext/zend_test/tests/
H A Dobserver_zend_call_function_01.phpt2 Observer: Calls that go through zend_call_function are observed
17 // array_reduce() calls zend_call_function() under the hood
/php-src/ext/dom/
H A Dxpath_callbacks.c410 zend_call_function(&fci, NULL); in php_dom_xpath_callback_dispatch()
/php-src/ext/pcre/
H A Dphp_pcre.c1554 if (zend_call_function(fci, fcc) == SUCCESS && Z_TYPE(retval) != IS_UNDEF) { in preg_do_repl_func()
/php-src/ext/zend_test/
H A Dfiber.c104 zend_call_function(&fiber->fci, &fiber->fci_cache); in zend_test_fiber_execute()
/php-src/ext/pdo/
H A Dpdo_stmt.c850 if (zend_call_function(&stmt->fetch.cls.fci, &stmt->fetch.cls.fcc) == FAILURE) { in do_fetch()
1030 if (zend_call_function(&stmt->fetch.cls.fci, &stmt->fetch.cls.fcc) == FAILURE) { in do_fetch()
1051 if (zend_call_function(&stmt->fetch.func.fci, &stmt->fetch.func.fcc) == FAILURE) { in do_fetch()
/php-src/ext/pcntl/tests/
H A Dasync_signals_2.phpt2 Async signals in zend_call_function
/php-src/ext/intl/converter/
H A Dconverter.c232 if (zend_call_function(&(objval->to_cb), &(objval->to_cache)) == FAILURE) { in php_converter_to_u_callback()
313 if (zend_call_function(&(objval->from_cb), &(objval->from_cache)) == FAILURE) { in php_converter_from_u_callback()
/php-src/sapi/phpdbg/
H A Dphpdbg_prompt.c184 if (zend_call_function(&fci, NULL) == SUCCESS) { in phpdbg_call_register()
/php-src/ext/intl/uchar/
H A Duchar.c182 if (zend_call_function(&context->fci, &context->fci_cache) == FAILURE) { in enumCharType_callback()
283 if (zend_call_function(&context->fci, &context->fci_cache) == FAILURE) { in enumCharNames_callback()
/php-src/sapi/embed/
H A DREADME.md79 if (zend_call_function(&fci, &fci_cache) == SUCCESS) {
/php-src/ext/opcache/tests/
H A Dbug73654.phpt2 Bug #73654: Segmentation fault in zend_call_function

Completed in 167 milliseconds

12