Home
last modified time | relevance | path

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

/PHP-8.0/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.c400 zend_fcall_info_init(&t->func_name, 0, &fci, &t->fci_cache, NULL, NULL); in _php_server_push_callback()
411 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.c1390 error = zend_call_function(&fci, &t->fci_cache); in curl_write()
1437 error = zend_call_function(&fci, &t->fci_cache); in curl_fnmatch()
1490 error = zend_call_function(&fci, &t->fci_cache); in curl_progress()
1546 error = zend_call_function(&fci, &t->fci_cache); in curl_read()
1608 error = zend_call_function(&fci, &t->fci_cache); in curl_write_header()
2720 ch->handlers->write_header->fci_cache = empty_fcall_info_cache; in _php_curl_setopt()
2753 ch->handlers->progress->fci_cache = empty_fcall_info_cache; in _php_curl_setopt()
2762 ch->handlers->read->fci_cache = empty_fcall_info_cache; in _php_curl_setopt()
2779 ch->handlers->write->fci_cache = empty_fcall_info_cache; in _php_curl_setopt()
2862 ch->handlers->fnmatch->fci_cache = empty_fcall_info_cache; in _php_curl_setopt()
/PHP-8.0/ext/standard/
H A Dbasic_functions.c1544 zend_fcall_info_cache fci_cache; local
1547 Z_PARAM_FUNC(fci, fci_cache)
1569 zend_fcall_info_cache fci_cache; local
1572 Z_PARAM_FUNC(fci, fci_cache)
1593 zend_fcall_info_cache fci_cache; local
1597 Z_PARAM_FUNC(fci, fci_cache)
1611 fci_cache.called_scope = called_scope;
1628 zend_fcall_info_cache fci_cache; local
1632 Z_PARAM_FUNC(fci, fci_cache)
2428 zend_fcall_info_cache fci_cache; local
[all …]
H A Darray.c5847 zend_fcall_info_cache fci_cache = empty_fcall_info_cache; local
5853 Z_PARAM_FUNC(fci, fci_cache)
5882 if (zend_call_function(&fci, &fci_cache) == SUCCESS && Z_TYPE(retval) != IS_UNDEF) {
5910 zend_fcall_info_cache fci_cache = empty_fcall_info_cache; local
5916 Z_PARAM_FUNC_OR_NULL(fci, fci_cache)
5953 if (zend_call_function(&fci, &fci_cache) == SUCCESS) {
5993 zend_fcall_info_cache fci_cache = empty_fcall_info_cache; local
5998 Z_PARAM_FUNC_OR_NULL(fci, fci_cache)
6029 ret = zend_call_function(&fci, &fci_cache);
6114 if (zend_call_function(&fci, &fci_cache) != SUCCESS || Z_TYPE(result) == IS_UNDEF) {
/PHP-8.0/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.0/Zend/
H A Dzend_closures.c128 zend_fcall_info_cache fci_cache; in ZEND_METHOD() local
152 fci_cache.function_handler = &closure->func; in ZEND_METHOD()
161 fci_cache.function_handler = &my_function; in ZEND_METHOD()
178 fci_cache.called_scope = newobj->ce; in ZEND_METHOD()
179 fci_cache.object = fci.object = newobj; in ZEND_METHOD()
185 if (zend_call_function(&fci, &fci_cache) == SUCCESS && Z_TYPE(closure_result) != IS_UNDEF) { in ZEND_METHOD()
192 if (fci_cache.function_handler->common.fn_flags & ZEND_ACC_GENERATOR) { in ZEND_METHOD()
196 && (fci_cache.function_handler->common.fn_flags & ZEND_ACC_HEAP_RT_CACHE)) { in ZEND_METHOD()
H A Dzend_execute_API.c663 zend_result zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache) /* {{{ */ in zend_call_function() argument
708 if (!fci_cache || !fci_cache->function_handler) { in zend_call_function()
711 if (!fci_cache) { in zend_call_function()
712 fci_cache = &fci_cache_local; in zend_call_function()
715 …callable_ex(&fci->function_name, fci->object, IS_CALLABLE_CHECK_SILENT, NULL, fci_cache, &error)) { in zend_call_function()
732 func = fci_cache->function_handler; in zend_call_function()
733 if ((func->common.fn_flags & ZEND_ACC_STATIC) || !fci_cache->object) { in zend_call_function()
735 object_or_called_scope = fci_cache->called_scope; in zend_call_function()
738 fci->object = fci_cache->object; in zend_call_function()
900 fci_cache->function_handler = NULL; in zend_call_function()
[all …]
H A Dzend_API.h575 ZEND_API zend_result zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache);
/PHP-8.0/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()
140 if (zend_fcall_info_init(callback, 0, &fci, &SG(fci_cache), NULL, &callback_error) == SUCCESS) { in sapi_run_header_callback()
143 error = zend_call_function(&fci, &SG(fci_cache)); in sapi_run_header_callback()

Completed in 91 milliseconds