Home
last modified time | relevance | path

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

/PHP-8.1/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.c385 …if (UNEXPECTED(zend_fcall_info_init(&t->func_name, 0, &fci, &t->fci_cache, NULL, NULL) == FAILURE)… in _php_server_push_callback()
412 error = zend_call_function(&fci, &t->fci_cache); in _php_server_push_callback()
467 mh->handlers.server_push->fci_cache = empty_fcall_info_cache; in _php_curl_multi_setopt()
H A Dinterface.c1395 error = zend_call_function(&fci, &t->fci_cache); in curl_write()
1440 error = zend_call_function(&fci, &t->fci_cache); in curl_fnmatch()
1488 error = zend_call_function(&fci, &t->fci_cache); in curl_progress()
1541 error = zend_call_function(&fci, &t->fci_cache); in curl_read()
1605 error = zend_call_function(&fci, &t->fci_cache); in curl_write_header()
2798 ch->handlers.write_header->fci_cache = empty_fcall_info_cache; in _php_curl_setopt()
2831 ch->handlers.progress->fci_cache = empty_fcall_info_cache; in _php_curl_setopt()
2839 ch->handlers.read->fci_cache = empty_fcall_info_cache; in _php_curl_setopt()
2856 ch->handlers.write->fci_cache = empty_fcall_info_cache; in _php_curl_setopt()
2939 ch->handlers.fnmatch->fci_cache = empty_fcall_info_cache; in _php_curl_setopt()
/PHP-8.1/ext/standard/
H A Dbasic_functions.c114 zend_fcall_info_cache fci_cache; member
1551 zend_fcall_info_cache fci_cache; local
1554 Z_PARAM_FUNC(fci, fci_cache)
1576 zend_fcall_info_cache fci_cache; local
1579 Z_PARAM_FUNC(fci, fci_cache)
1600 zend_fcall_info_cache fci_cache; local
1604 Z_PARAM_FUNC(fci, fci_cache)
1639 Z_PARAM_FUNC(fci, fci_cache)
1666 if (fci_cache->object) {
1667 GC_ADDREF(fci_cache->object);
[all …]
H A Dbasic_functions.h138 zend_fcall_info_cache fci_cache; member
H A Dvar.c771 zend_fcall_info_cache fci_cache; in php_var_serialize_call_sleep() local
782 fci_cache.function_handler = fn; in php_var_serialize_call_sleep()
783 fci_cache.object = obj; in php_var_serialize_call_sleep()
784 fci_cache.called_scope = obj->ce; in php_var_serialize_call_sleep()
787 res = zend_call_function(&fci, &fci_cache); in php_var_serialize_call_sleep()
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.c1340 zend_fcall_info_cache fci_cache; member
1442 result = zend_call_function(&fci, &context->fci_cache); in php_array_walk()
1489 Z_PARAM_FUNC(context.fci, context.fci_cache) in PHP_FUNCTION()
1508 Z_PARAM_FUNC(context.fci, context.fci_cache) in PHP_FUNCTION()
5821 zend_fcall_info_cache fci_cache = empty_fcall_info_cache; local
5827 Z_PARAM_FUNC(fci, fci_cache)
5884 zend_fcall_info_cache fci_cache = empty_fcall_info_cache; local
5890 Z_PARAM_FUNC_OR_NULL(fci, fci_cache)
5927 if (zend_call_function(&fci, &fci_cache) == SUCCESS) {
5972 Z_PARAM_FUNC_OR_NULL(fci, fci_cache)
[all …]
/PHP-8.1/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.1/ext/intl/uchar/
H A Duchar.c162 zend_fcall_info_cache fci_cache; member
181 if (zend_call_function(&context->fci, &context->fci_cache) == FAILURE) { in enumCharType_callback()
193 if (zend_parse_parameters(ZEND_NUM_ARGS(), "f", &context.fci, &context.fci_cache) == FAILURE) { in IC_METHOD()
265 zend_fcall_info_cache fci_cache; member
282 if (zend_call_function(&context->fci, &context->fci_cache) == FAILURE) { in enumCharNames_callback()
305 Z_PARAM_FUNC(context.fci, context.fci_cache) in IC_METHOD()
/PHP-8.1/Zend/
H A Dzend_fibers.h113 zend_fcall_info_cache fci_cache; member
H A Dzend_closures.c123 zend_fcall_info_cache fci_cache; in ZEND_METHOD() local
149 fci_cache.function_handler = &closure->func; in ZEND_METHOD()
158 fci_cache.function_handler = &my_function; in ZEND_METHOD()
175 fci_cache.called_scope = newclass; in ZEND_METHOD()
176 fci_cache.object = fci.object = newobj; in ZEND_METHOD()
182 if (zend_call_function(&fci, &fci_cache) == SUCCESS && Z_TYPE(closure_result) != IS_UNDEF) { in ZEND_METHOD()
189 if (fci_cache.function_handler->common.fn_flags & ZEND_ACC_GENERATOR) { in ZEND_METHOD()
193 && (fci_cache.function_handler->common.fn_flags & ZEND_ACC_HEAP_RT_CACHE)) { in ZEND_METHOD()
H A Dzend_execute_API.c733 zend_result zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache) /* {{{ */ in zend_call_function() argument
755 if (!fci_cache || !fci_cache->function_handler) { in zend_call_function()
758 if (!fci_cache) { in zend_call_function()
759 fci_cache = &fci_cache_local; in zend_call_function()
762 …callable_ex(&fci->function_name, fci->object, IS_CALLABLE_CHECK_SILENT, NULL, fci_cache, &error)) { in zend_call_function()
776 func = fci_cache->function_handler; in zend_call_function()
777 if ((func->common.fn_flags & ZEND_ACC_STATIC) || !fci_cache->object) { in zend_call_function()
778 object_or_called_scope = fci_cache->called_scope; in zend_call_function()
781 object_or_called_scope = fci_cache->object; in zend_call_function()
921 fci_cache->function_handler = NULL; in zend_call_function()
H A Dzend_fibers.c484 zend_call_function(&fiber->fci, &fiber->fci_cache); in zend_fiber_execute()
685 Z_PARAM_FUNC(fiber->fci, fiber->fci_cache) in ZEND_METHOD()
H A Dzend_API.h655 ZEND_API zend_result zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache);
/PHP-8.1/sapi/embed/
H A DREADME.md71 zend_fcall_info_cache fci_cache = {0};
79 if (zend_call_function(&fci, &fci_cache) == SUCCESS) {
/PHP-8.1/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.1/ext/session/
H A Dsession.c2043 &shutdown_function_entry.fci_cache, NULL, NULL); in PHP_FUNCTION()
2668 &shutdown_function_entry.fci_cache, NULL, NULL); in PHP_FUNCTION()

Completed in 135 milliseconds