Home
last modified time | relevance | path

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

/PHP-8.2/ext/curl/
H A Dcurl_private.h49 zend_fcall_info_cache fci_cache; member
58 zend_fcall_info_cache fci_cache; member
67 zend_fcall_info_cache fci_cache; member
H A Dmulti.c389 …if (UNEXPECTED(zend_fcall_info_init(&t->func_name, 0, &fci, &t->fci_cache, NULL, NULL) == FAILURE)… in _php_server_push_callback()
414 error = zend_call_function(&fci, &t->fci_cache); in _php_server_push_callback()
466 mh->handlers.server_push->fci_cache = empty_fcall_info_cache; in _php_curl_multi_setopt()
H A Dinterface.c603 error = zend_call_function(&fci, &t->fci_cache); in curl_write()
648 error = zend_call_function(&fci, &t->fci_cache); in curl_fnmatch()
696 error = zend_call_function(&fci, &t->fci_cache); in curl_progress()
744 error = zend_call_function(&fci, &t->fci_cache); in curl_xferinfo()
791 error = zend_call_function(&fci, &t->fci_cache); in curl_ssh_hostkeyfunction()
852 error = zend_call_function(&fci, &t->fci_cache); in curl_read()
916 error = zend_call_function(&fci, &t->fci_cache); in curl_write_header()
2089 ch->handlers.progress->fci_cache = empty_fcall_info_cache; in _php_curl_setopt()
2111 ch->handlers.read->fci_cache = empty_fcall_info_cache; in _php_curl_setopt()
2128 ch->handlers.write->fci_cache = empty_fcall_info_cache; in _php_curl_setopt()
[all …]
/PHP-8.2/ext/standard/
H A Dbasic_functions.c123 zend_fcall_info_cache fci_cache; member
1472 zend_fcall_info_cache fci_cache; local
1475 Z_PARAM_FUNC(fci, fci_cache)
1497 zend_fcall_info_cache fci_cache; local
1500 Z_PARAM_FUNC(fci, fci_cache)
1521 zend_fcall_info_cache fci_cache; local
1525 Z_PARAM_FUNC(fci, fci_cache)
1561 Z_PARAM_FUNC(fci, fci_cache)
1587 if (fci_cache->object) {
1588 GC_ADDREF(fci_cache->object);
[all …]
H A Dbasic_functions.h128 zend_fcall_info_cache fci_cache; member
H A Dvar_unserializer.re260 zend_fcall_info_cache fci_cache;
272 fci_cache.function_handler = zend_hash_find_ptr(
274 fci_cache.object = fci.object;
275 fci_cache.called_scope = fci.object->ce;
278 if (zend_call_function(&fci, &fci_cache) == FAILURE || Z_ISUNDEF(retval)) {
H A Darray.c1458 zend_fcall_info_cache fci_cache; member
1560 result = zend_call_function(&fci, &context->fci_cache); in php_array_walk()
1607 Z_PARAM_FUNC(context.fci, context.fci_cache) in PHP_FUNCTION()
1626 Z_PARAM_FUNC(context.fci, context.fci_cache) in PHP_FUNCTION()
6440 zend_fcall_info_cache fci_cache = empty_fcall_info_cache; local
6446 Z_PARAM_FUNC(fci, fci_cache)
6503 zend_fcall_info_cache fci_cache = empty_fcall_info_cache; local
6509 Z_PARAM_FUNC_OR_NULL(fci, fci_cache)
6546 if (zend_call_function(&fci, &fci_cache) == SUCCESS) {
6591 Z_PARAM_FUNC_OR_NULL(fci, fci_cache)
[all …]
/PHP-8.2/ext/zend_test/
H A Dfiber.c104 zend_call_function(&fiber->fci, &fiber->fci_cache); in zend_test_fiber_execute()
234 Z_PARAM_FUNC(fiber->fci, fiber->fci_cache) in ZEND_METHOD()
322 zend_fcall_info_cache fci_cache; in ZEND_METHOD() local
325 Z_PARAM_FUNC(fci, fci_cache) in ZEND_METHOD()
332 target->fci_cache = fci_cache; in ZEND_METHOD()
H A Dfiber.h32 zend_fcall_info_cache fci_cache; member
/PHP-8.2/ext/intl/uchar/
H A Duchar.c163 zend_fcall_info_cache fci_cache; member
182 if (zend_call_function(&context->fci, &context->fci_cache) == FAILURE) { in enumCharType_callback()
194 if (zend_parse_parameters(ZEND_NUM_ARGS(), "f", &context.fci, &context.fci_cache) == FAILURE) { in IC_METHOD()
266 zend_fcall_info_cache fci_cache; member
283 if (zend_call_function(&context->fci, &context->fci_cache) == FAILURE) { in enumCharNames_callback()
306 Z_PARAM_FUNC(context.fci, context.fci_cache) in IC_METHOD()
/PHP-8.2/Zend/
H A Dzend_fibers.h120 zend_fcall_info_cache fci_cache; member
H A Dzend_closures.c128 zend_fcall_info_cache fci_cache; in ZEND_METHOD() local
149 fci_cache.called_scope = newclass; in ZEND_METHOD()
150 fci_cache.object = fci.object = newobj; in ZEND_METHOD()
161 fci_cache.function_handler = &closure->func; in ZEND_METHOD()
163 zend_call_function(&fci, &fci_cache); in ZEND_METHOD()
188 fci_cache.function_handler = my_function; in ZEND_METHOD()
202 zend_call_function(&fci, &fci_cache); in ZEND_METHOD()
205 if (fci_cache.function_handler->common.fn_flags & ZEND_ACC_HEAP_RT_CACHE) { in ZEND_METHOD()
H A Dzend_execute_API.c788 if (fci_cache) { in zend_call_function()
789 zend_release_fcall_info_cache(fci_cache); in zend_call_function()
796 if (!fci_cache || !fci_cache->function_handler) { in zend_call_function()
799 if (!fci_cache) { in zend_call_function()
800 fci_cache = &fci_cache_local; in zend_call_function()
803 if (!zend_is_callable_ex(&fci->function_name, fci->object, 0, NULL, fci_cache, &error)) { in zend_call_function()
816 func = fci_cache->function_handler; in zend_call_function()
817 if ((func->common.fn_flags & ZEND_ACC_STATIC) || !fci_cache->object) { in zend_call_function()
818 object_or_called_scope = fci_cache->called_scope; in zend_call_function()
821 object_or_called_scope = fci_cache->object; in zend_call_function()
[all …]
H A Dzend_fibers.c588 zend_call_function(&fiber->fci, &fiber->fci_cache); in zend_fiber_execute()
796 fiber->fci_cache = fcc; in ZEND_METHOD()
H A Dzend_API.h819 ZEND_API zend_result zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache);
823 zend_fcall_info *fci, zend_fcall_info_cache *fci_cache, zval *retval) in zend_call_function_with_return_value() argument
827 return zend_call_function(fci, fci_cache); in zend_call_function_with_return_value()
/PHP-8.2/sapi/embed/
H A DREADME.md71 zend_fcall_info_cache fci_cache = {0};
79 if (zend_call_function(&fci, &fci_cache) == SUCCESS) {
/PHP-8.2/main/
H A DSAPI.h149 zend_fcall_info_cache fci_cache; member
H A DSAPI.c124 SG(fci_cache) = empty_fcall_info_cache; in PHP_FUNCTION()
144 if (zend_fcall_info_init(callback, 0, &fci, &SG(fci_cache), NULL, &callback_error) == SUCCESS) { in sapi_run_header_callback()
147 error = zend_call_function(&fci, &SG(fci_cache)); in sapi_run_header_callback()
/PHP-8.2/ext/session/
H A Dsession.c2084 &shutdown_function_entry.fci_cache, NULL, NULL); in PHP_FUNCTION()
2746 &shutdown_function_entry.fci_cache, NULL, NULL); in PHP_FUNCTION()

Completed in 157 milliseconds