Home
last modified time | relevance | path

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

/php-src/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.c389 …if (UNEXPECTED(zend_fcall_info_init(&t->func_name, 0, &fci, &t->fci_cache, NULL, NULL) == FAILURE)… in _php_server_push_callback()
414 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.c604 error = zend_call_function(&fci, &t->fci_cache); in curl_write()
649 error = zend_call_function(&fci, &t->fci_cache); in curl_fnmatch()
697 error = zend_call_function(&fci, &t->fci_cache); in curl_progress()
745 error = zend_call_function(&fci, &t->fci_cache); in curl_xferinfo()
792 error = zend_call_function(&fci, &t->fci_cache); in curl_ssh_hostkeyfunction()
853 error = zend_call_function(&fci, &t->fci_cache); in curl_read()
917 error = zend_call_function(&fci, &t->fci_cache); in curl_write_header()
2152 ch->handlers.progress->fci_cache = empty_fcall_info_cache; in _php_curl_setopt()
2174 ch->handlers.read->fci_cache = empty_fcall_info_cache; in _php_curl_setopt()
2191 ch->handlers.write->fci_cache = empty_fcall_info_cache; in _php_curl_setopt()
[all …]
/php-src/ext/standard/
H A Dbasic_functions.c121 zend_fcall_info_cache fci_cache; member
1454 zend_fcall_info_cache fci_cache; local
1457 Z_PARAM_FUNC(fci, fci_cache)
1479 zend_fcall_info_cache fci_cache; local
1482 Z_PARAM_FUNC(fci, fci_cache)
1503 zend_fcall_info_cache fci_cache; local
1507 Z_PARAM_FUNC(fci, fci_cache)
1543 Z_PARAM_FUNC(fci, fci_cache)
1569 if (fci_cache->object) {
1570 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.c1458 zend_fcall_info_cache fci_cache; member
1560 result = zend_call_function(&fci, &context->fci_cache); in php_array_walk()
1607 Z_PARAM_FUNC(context.fci, context.fci_cache) in PHP_FUNCTION()
1626 Z_PARAM_FUNC(context.fci, context.fci_cache) in PHP_FUNCTION()
6445 zend_fcall_info_cache fci_cache = empty_fcall_info_cache; local
6451 Z_PARAM_FUNC(fci, fci_cache)
6508 zend_fcall_info_cache fci_cache = empty_fcall_info_cache; local
6514 Z_PARAM_FUNC_OR_NULL(fci, fci_cache)
6551 if (zend_call_function(&fci, &fci_cache) == SUCCESS) {
6596 Z_PARAM_FUNC_OR_NULL(fci, fci_cache)
[all …]
/php-src/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-src/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-src/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.c788 if (fci_cache) { in zend_call_function()
789 zend_release_fcall_info_cache(fci_cache); in zend_call_function()
796 if (!fci_cache || !fci_cache->function_handler) { in zend_call_function()
799 if (!fci_cache) { in zend_call_function()
800 fci_cache = &fci_cache_local; in zend_call_function()
803 if (!zend_is_callable_ex(&fci->function_name, fci->object, 0, NULL, fci_cache, &error)) { in zend_call_function()
816 func = fci_cache->function_handler; in zend_call_function()
817 if ((func->common.fn_flags & ZEND_ACC_STATIC) || !fci_cache->object) { in zend_call_function()
818 object_or_called_scope = fci_cache->called_scope; in zend_call_function()
821 object_or_called_scope = fci_cache->object; in zend_call_function()
[all …]
H A Dzend_fibers.c601 zend_call_function(&fiber->fci, &fiber->fci_cache); in zend_fiber_execute()
809 fiber->fci_cache = fcc; in ZEND_METHOD()
H A Dzend_API.h821 ZEND_API zend_result zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache);
825 zend_fcall_info *fci, zend_fcall_info_cache *fci_cache, zval *retval) in zend_call_function_with_return_value() argument
829 return zend_call_function(fci, fci_cache); in zend_call_function_with_return_value()
/php-src/sapi/embed/
H A DREADME.md71 zend_fcall_info_cache fci_cache = {0};
79 if (zend_call_function(&fci, &fci_cache) == SUCCESS) {
/php-src/main/
H A DSAPI.h149 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-src/ext/session/
H A Dsession.c2078 &shutdown_function_entry.fci_cache, NULL, NULL); in PHP_FUNCTION()
2740 &shutdown_function_entry.fci_cache, NULL, NULL); in PHP_FUNCTION()

Completed in 107 milliseconds