Home
last modified time | relevance | path

Searched refs:fci_cache (Results 1 – 20 of 20) 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.c398 …if (UNEXPECTED(zend_fcall_info_init(&t->func_name, 0, &fci, &t->fci_cache, NULL, NULL) == FAILURE)… in _php_server_push_callback()
425 error = zend_call_function(&fci, &t->fci_cache); in _php_server_push_callback()
483 mh->handlers.server_push->fci_cache = empty_fcall_info_cache; in _php_curl_multi_setopt()
H A Dinterface.c609 error = zend_call_function(&fci, &t->fci_cache); in curl_write()
654 error = zend_call_function(&fci, &t->fci_cache); in curl_fnmatch()
702 error = zend_call_function(&fci, &t->fci_cache); in curl_progress()
751 error = zend_call_function(&fci, &t->fci_cache); in curl_xferinfo()
805 error = zend_call_function(&fci, &t->fci_cache); in curl_read()
869 error = zend_call_function(&fci, &t->fci_cache); in curl_write_header()
2191 ch->handlers.progress->fci_cache = empty_fcall_info_cache; in _php_curl_setopt()
2199 ch->handlers.read->fci_cache = empty_fcall_info_cache; in _php_curl_setopt()
2216 ch->handlers.write->fci_cache = empty_fcall_info_cache; in _php_curl_setopt()
2230 ch->handlers.xferinfo->fci_cache = empty_fcall_info_cache; in _php_curl_setopt()
[all …]
/PHP-8.2/ext/standard/
H A Dbasic_functions.c121 zend_fcall_info_cache fci_cache; member
1497 zend_fcall_info_cache fci_cache; local
1500 Z_PARAM_FUNC(fci, fci_cache)
1522 zend_fcall_info_cache fci_cache; local
1525 Z_PARAM_FUNC(fci, fci_cache)
1546 zend_fcall_info_cache fci_cache; local
1550 Z_PARAM_FUNC(fci, fci_cache)
1585 Z_PARAM_FUNC(fci, fci_cache)
1612 if (fci_cache->object) {
1613 GC_ADDREF(fci_cache->object);
[all …]
H A Dbasic_functions.h131 zend_fcall_info_cache fci_cache; member
H A Dvar.c774 zend_fcall_info_cache fci_cache; in php_var_serialize_call_sleep() local
785 fci_cache.function_handler = fn; in php_var_serialize_call_sleep()
786 fci_cache.object = obj; in php_var_serialize_call_sleep()
787 fci_cache.called_scope = obj->ce; in php_var_serialize_call_sleep()
790 res = zend_call_function(&fci, &fci_cache); in php_var_serialize_call_sleep()
H A Darray.c1293 zend_fcall_info_cache fci_cache; member
1395 result = zend_call_function(&fci, &context->fci_cache); in php_array_walk()
1442 Z_PARAM_FUNC(context.fci, context.fci_cache) in PHP_FUNCTION()
1461 Z_PARAM_FUNC(context.fci, context.fci_cache) in PHP_FUNCTION()
6051 zend_fcall_info_cache fci_cache = empty_fcall_info_cache; local
6057 Z_PARAM_FUNC(fci, fci_cache)
6114 zend_fcall_info_cache fci_cache = empty_fcall_info_cache; local
6120 Z_PARAM_FUNC_OR_NULL(fci, fci_cache)
6157 if (zend_call_function(&fci, &fci_cache) == SUCCESS) {
6202 Z_PARAM_FUNC_OR_NULL(fci, fci_cache)
[all …]
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)) {
/PHP-8.2/ext/zend_test/
H A Dfiber.c100 zend_call_function(&fiber->fci, &fiber->fci_cache); in zend_test_fiber_execute()
231 Z_PARAM_FUNC(fiber->fci, fiber->fci_cache) in ZEND_METHOD()
319 zend_fcall_info_cache fci_cache; in ZEND_METHOD() local
322 Z_PARAM_FUNC(fci, fci_cache) in ZEND_METHOD()
329 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.c123 zend_fcall_info_cache fci_cache; in ZEND_METHOD() local
144 fci_cache.called_scope = newclass; in ZEND_METHOD()
145 fci_cache.object = fci.object = newobj; in ZEND_METHOD()
156 fci_cache.function_handler = &closure->func; in ZEND_METHOD()
158 zend_call_function(&fci, &fci_cache); in ZEND_METHOD()
183 fci_cache.function_handler = my_function; in ZEND_METHOD()
197 zend_call_function(&fci, &fci_cache); in ZEND_METHOD()
200 if (fci_cache.function_handler->common.fn_flags & ZEND_ACC_HEAP_RT_CACHE) { in ZEND_METHOD()
H A Dzend_execute_API.c766 if (fci_cache) { in zend_call_function()
767 zend_release_fcall_info_cache(fci_cache); in zend_call_function()
774 if (!fci_cache || !fci_cache->function_handler) { in zend_call_function()
777 if (!fci_cache) { in zend_call_function()
778 fci_cache = &fci_cache_local; in zend_call_function()
781 if (!zend_is_callable_ex(&fci->function_name, fci->object, 0, NULL, fci_cache, &error)) { in zend_call_function()
794 func = fci_cache->function_handler; in zend_call_function()
795 if ((func->common.fn_flags & ZEND_ACC_STATIC) || !fci_cache->object) { in zend_call_function()
796 object_or_called_scope = fci_cache->called_scope; in zend_call_function()
799 object_or_called_scope = fci_cache->object; in zend_call_function()
[all …]
H A Dzend_fibers.c513 zend_call_function(&fiber->fci, &fiber->fci_cache); in zend_fiber_execute()
742 fiber->fci_cache = fcc; in ZEND_METHOD()
H A Dzend_API.h738 ZEND_API zend_result zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache);
/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.h129 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.c2046 &shutdown_function_entry.fci_cache, NULL, NULL); in PHP_FUNCTION()
2674 &shutdown_function_entry.fci_cache, NULL, NULL); in PHP_FUNCTION()

Completed in 111 milliseconds