Home
last modified time | relevance | path

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

/PHP-8.3/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.c390 …if (UNEXPECTED(zend_fcall_info_init(&t->func_name, 0, &fci, &t->fci_cache, NULL, NULL) == FAILURE)… in _php_server_push_callback()
415 error = zend_call_function(&fci, &t->fci_cache); in _php_server_push_callback()
472 mh->handlers.server_push->fci_cache = empty_fcall_info_cache; in _php_curl_multi_setopt()
H A Dinterface.c619 error = zend_call_function(&fci, &t->fci_cache); in curl_write()
664 error = zend_call_function(&fci, &t->fci_cache); in curl_fnmatch()
712 error = zend_call_function(&fci, &t->fci_cache); in curl_progress()
761 error = zend_call_function(&fci, &t->fci_cache); in curl_xferinfo()
809 error = zend_call_function(&fci, &t->fci_cache); in curl_ssh_hostkeyfunction()
870 error = zend_call_function(&fci, &t->fci_cache); in curl_read()
934 error = zend_call_function(&fci, &t->fci_cache); in curl_write_header()
2274 ch->handlers.progress->fci_cache = empty_fcall_info_cache; in _php_curl_setopt()
2296 ch->handlers.read->fci_cache = empty_fcall_info_cache; in _php_curl_setopt()
2313 ch->handlers.write->fci_cache = empty_fcall_info_cache; in _php_curl_setopt()
[all …]
/PHP-8.3/ext/standard/
H A Dbasic_functions.c122 zend_fcall_info_cache fci_cache; member
1479 zend_fcall_info_cache fci_cache; local
1482 Z_PARAM_FUNC(fci, fci_cache)
1504 zend_fcall_info_cache fci_cache; local
1507 Z_PARAM_FUNC(fci, fci_cache)
1528 zend_fcall_info_cache fci_cache; local
1532 Z_PARAM_FUNC(fci, fci_cache)
1568 Z_PARAM_FUNC(fci, fci_cache)
1594 if (fci_cache->object) {
1595 GC_ADDREF(fci_cache->object);
[all …]
H A Dbasic_functions.h131 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.c1379 zend_fcall_info_cache fci_cache; member
1481 result = zend_call_function(&fci, &context->fci_cache); in php_array_walk()
1528 Z_PARAM_FUNC(context.fci, context.fci_cache) in PHP_FUNCTION()
1547 Z_PARAM_FUNC(context.fci, context.fci_cache) in PHP_FUNCTION()
6316 zend_fcall_info_cache fci_cache = empty_fcall_info_cache; local
6322 Z_PARAM_FUNC(fci, fci_cache)
6379 zend_fcall_info_cache fci_cache = empty_fcall_info_cache; local
6385 Z_PARAM_FUNC_OR_NULL(fci, fci_cache)
6422 if (zend_call_function(&fci, &fci_cache) == SUCCESS) {
6467 Z_PARAM_FUNC_OR_NULL(fci, fci_cache)
[all …]
/PHP-8.3/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.3/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.3/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.c774 if (fci_cache) { in zend_call_function()
775 zend_release_fcall_info_cache(fci_cache); in zend_call_function()
782 if (!fci_cache || !fci_cache->function_handler) { in zend_call_function()
785 if (!fci_cache) { in zend_call_function()
786 fci_cache = &fci_cache_local; in zend_call_function()
789 if (!zend_is_callable_ex(&fci->function_name, fci->object, 0, NULL, fci_cache, &error)) { in zend_call_function()
802 func = fci_cache->function_handler; in zend_call_function()
803 if ((func->common.fn_flags & ZEND_ACC_STATIC) || !fci_cache->object) { in zend_call_function()
804 object_or_called_scope = fci_cache->called_scope; in zend_call_function()
807 object_or_called_scope = fci_cache->object; in zend_call_function()
[all …]
H A Dzend_fibers.c595 zend_call_function(&fiber->fci, &fiber->fci_cache); in zend_fiber_execute()
803 fiber->fci_cache = fcc; in ZEND_METHOD()
H A Dzend_API.h816 ZEND_API zend_result zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache);
820 zend_fcall_info *fci, zend_fcall_info_cache *fci_cache, zval *retval) in zend_call_function_with_return_value() argument
824 return zend_call_function(fci, fci_cache); in zend_call_function_with_return_value()
/PHP-8.3/sapi/embed/
H A DREADME.md71 zend_fcall_info_cache fci_cache = {0};
79 if (zend_call_function(&fci, &fci_cache) == SUCCESS) {
/PHP-8.3/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.3/ext/session/
H A Dsession.c2084 &shutdown_function_entry.fci_cache, NULL, NULL); in PHP_FUNCTION()
2741 &shutdown_function_entry.fci_cache, NULL, NULL); in PHP_FUNCTION()

Completed in 403 milliseconds