Home
last modified time | relevance | path

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

/PHP-7.2/ext/curl/
H A Dphp_curl.h133 zend_fcall_info_cache fci_cache; member
142 zend_fcall_info_cache fci_cache; member
151 zend_fcall_info_cache fci_cache; member
H A Dmulti.c528 zend_fcall_info_init(&t->func_name, 0, &fci, &t->fci_cache, NULL, NULL); in _php_server_push_callback()
539 error = zend_call_function(&fci, &t->fci_cache); in _php_server_push_callback()
591 mh->handlers->server_push->fci_cache = empty_fcall_info_cache; in _php_curl_multi_setopt()
H A Dinterface.c1490 error = zend_call_function(&fci, &t->fci_cache); in curl_write()
1539 error = zend_call_function(&fci, &t->fci_cache); in curl_fnmatch()
1594 error = zend_call_function(&fci, &t->fci_cache); in curl_progress()
1655 error = zend_call_function(&fci, &t->fci_cache); in curl_read()
1721 error = zend_call_function(&fci, &t->fci_cache); in curl_write_header()
2676 ch->handlers->write_header->fci_cache = empty_fcall_info_cache; in _php_curl_setopt()
2807 ch->handlers->progress->fci_cache = empty_fcall_info_cache; in _php_curl_setopt()
2816 ch->handlers->read->fci_cache = empty_fcall_info_cache; in _php_curl_setopt()
2833 ch->handlers->write->fci_cache = empty_fcall_info_cache; in _php_curl_setopt()
2927 ch->handlers->fnmatch->fci_cache = empty_fcall_info_cache; in _php_curl_setopt()
/PHP-7.2/Zend/
H A Dzend_closures.c116 zend_fcall_info_cache fci_cache; in ZEND_METHOD() local
136 if (zend_fcall_info_init(zclosure, 0, &fci, &fci_cache, NULL, NULL) != SUCCESS) { in ZEND_METHOD()
143 fci.object = fci_cache.object = newobj; in ZEND_METHOD()
144 fci_cache.initialized = 1; in ZEND_METHOD()
145 fci_cache.called_scope = Z_OBJCE_P(newthis); in ZEND_METHOD()
147 if (fci_cache.function_handler->common.fn_flags & ZEND_ACC_GENERATOR) { in ZEND_METHOD()
151 fci_cache.function_handler = &closure->func; in ZEND_METHOD()
153 …memcpy(&my_function, fci_cache.function_handler, fci_cache.function_handler->type == ZEND_USER_FUN… in ZEND_METHOD()
156 fci_cache.function_handler = &my_function; in ZEND_METHOD()
165 if (zend_call_function(&fci, &fci_cache) == SUCCESS && Z_TYPE(closure_result) != IS_UNDEF) { in ZEND_METHOD()
[all …]
H A Dzend_execute_API.c659 int zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache) /* {{{ */ in zend_call_function() argument
707 if (!fci_cache || !fci_cache->initialized) { in zend_call_function()
710 if (!fci_cache) { in zend_call_function()
711 fci_cache = &fci_cache_local; in zend_call_function()
714 …callable_ex(&fci->function_name, fci->object, IS_CALLABLE_CHECK_SILENT, NULL, fci_cache, &error)) { in zend_call_function()
742 func = fci_cache->function_handler; in zend_call_function()
744 NULL : fci_cache->object; in zend_call_function()
747 func, fci->param_count, fci_cache->called_scope, fci->object); in zend_call_function()
824 fci_cache->initialized = 0; in zend_call_function()
848 fci_cache->initialized = 0; in zend_call_function()
H A Dzend_API.h553 ZEND_API int zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache);
/PHP-7.2/ext/intl/uchar/
H A Duchar.c182 zend_fcall_info_cache fci_cache; member
202 if (zend_call_function(&context->fci, &context->fci_cache) == FAILURE) { in enumCharType_callback()
214 if (zend_parse_parameters(ZEND_NUM_ARGS(), "f", &context.fci, &context.fci_cache) == FAILURE) { in IC_METHOD()
299 zend_fcall_info_cache fci_cache; member
316 if (zend_call_function(&context->fci, &context->fci_cache) == FAILURE) { in enumCharNames_callback()
334 …ters(ZEND_NUM_ARGS(), "zzf|l", &zstart, &zlimit, &context.fci, &context.fci_cache, &nameChoice) ==… in IC_METHOD()
/PHP-7.2/ext/standard/
H A Dbasic_functions.c4870 zend_fcall_info_cache fci_cache; local
4873 Z_PARAM_FUNC(fci, fci_cache)
4895 zend_fcall_info_cache fci_cache; local
4898 Z_PARAM_FUNC(fci, fci_cache)
4922 zend_fcall_info_cache fci_cache; local
4926 Z_PARAM_FUNC(fci, fci_cache)
4938 if (called_scope && fci_cache.calling_scope &&
4940 fci_cache.called_scope = called_scope;
4958 zend_fcall_info_cache fci_cache; local
4962 Z_PARAM_FUNC(fci, fci_cache)
[all …]
H A Darray.c5920 zend_fcall_info_cache fci_cache = empty_fcall_info_cache; local
5926 Z_PARAM_FUNC(fci, fci_cache)
5957 if (zend_call_function(&fci, &fci_cache) == SUCCESS && Z_TYPE(retval) != IS_UNDEF) {
5985 zend_fcall_info_cache fci_cache = empty_fcall_info_cache; local
5991 Z_PARAM_FUNC(fci, fci_cache)
6028 if (zend_call_function(&fci, &fci_cache) == SUCCESS) {
6072 zend_fcall_info_cache fci_cache = empty_fcall_info_cache; local
6077 Z_PARAM_FUNC_EX(fci, fci_cache, 1, 0)
6110 ret = zend_call_function(&fci, &fci_cache);
6196 if (zend_call_function(&fci, &fci_cache) != SUCCESS || Z_TYPE(result) == IS_UNDEF) {
/PHP-7.2/main/
H A DSAPI.h136 zend_fcall_info_cache fci_cache; member
H A DSAPI.c136 SG(fci_cache) = empty_fcall_info_cache; in PHP_FUNCTION()
152 if (zend_fcall_info_init(callback, 0, &fci, &SG(fci_cache), NULL, &callback_error) == SUCCESS) { in sapi_run_header_callback()
155 error = zend_call_function(&fci, &SG(fci_cache)); in sapi_run_header_callback()

Completed in 110 milliseconds