Home
last modified time | relevance | path

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

/php-src/ext/standard/
H A Dbasic_functions.c126 zend_fcall_info_cache fci_cache; member
1468 zend_fcall_info_cache fci_cache; local
1471 Z_PARAM_FUNC(fci, fci_cache)
1493 zend_fcall_info_cache fci_cache; local
1496 Z_PARAM_FUNC(fci, fci_cache)
1517 zend_fcall_info_cache fci_cache; local
1521 Z_PARAM_FUNC(fci, fci_cache)
1557 Z_PARAM_FUNC(fci, fci_cache)
1583 if (fci_cache->object) {
1584 GC_ADDREF(fci_cache->object);
[all …]
H A Dbasic_functions.h127 zend_fcall_info_cache fci_cache; member
H A Darray.c1452 zend_fcall_info_cache fci_cache; member
1601 Z_PARAM_FUNC(context.fci, context.fci_cache) in PHP_FUNCTION()
1620 Z_PARAM_FUNC(context.fci, context.fci_cache) in PHP_FUNCTION()
6450 Z_PARAM_FUNC(fci, fci_cache)
6513 Z_PARAM_FUNC_OR_NULL(fci, fci_cache)
6667 Z_PARAM_FUNC(fci, fci_cache)
6689 Z_PARAM_FUNC(fci, fci_cache)
6711 Z_PARAM_FUNC(fci, fci_cache)
6731 Z_PARAM_FUNC(fci, fci_cache)
6754 Z_PARAM_FUNC_OR_NULL(fci, fci_cache)
[all …]
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)) {
/php-src/ext/zend_test/
H A Dfiber.c105 zend_call_function(&fiber->fci, &fiber->fci_cache); in zend_test_fiber_execute()
235 Z_PARAM_FUNC(fiber->fci, fiber->fci_cache) in ZEND_METHOD()
323 zend_fcall_info_cache fci_cache; in ZEND_METHOD() local
326 Z_PARAM_FUNC(fci, fci_cache) in ZEND_METHOD()
333 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()
195 Z_PARAM_FUNC(context.fci, context.fci_cache) in IC_METHOD()
268 zend_fcall_info_cache fci_cache; member
285 if (zend_call_function(&context->fci, &context->fci_cache) == FAILURE) { in enumCharNames_callback()
308 Z_PARAM_FUNC(context.fci, context.fci_cache) in IC_METHOD()
/php-src/Zend/
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.c816 if (fci_cache) { in zend_call_function()
817 zend_release_fcall_info_cache(fci_cache); in zend_call_function()
824 if (!fci_cache || !fci_cache->function_handler) { in zend_call_function()
827 if (!fci_cache) { in zend_call_function()
828 fci_cache = &fci_cache_local; in zend_call_function()
831 if (!zend_is_callable_ex(&fci->function_name, fci->object, 0, NULL, fci_cache, &error)) { in zend_call_function()
844 func = fci_cache->function_handler; in zend_call_function()
845 if ((func->common.fn_flags & ZEND_ACC_STATIC) || !fci_cache->object) { in zend_call_function()
846 object_or_called_scope = fci_cache->called_scope; in zend_call_function()
849 object_or_called_scope = fci_cache->object; in zend_call_function()
[all …]
H A Dzend_fibers.h120 zend_fcall_info_cache fci_cache; member
H A Dzend_fibers.c604 zend_call_function(&fiber->fci, &fiber->fci_cache); in zend_fiber_execute()
884 fiber->fci_cache = fcc; in ZEND_METHOD()
H A Dzend_API.h823 ZEND_API zend_result zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache);
827 zend_fcall_info *fci, zend_fcall_info_cache *fci_cache, zval *retval) in zend_call_function_with_return_value() argument
831 return zend_call_function(fci, fci_cache); in zend_call_function_with_return_value()
H A Dzend_gc.c1864 fiber->fci_cache.function_handler = (zend_function*) &gc_destructor_fiber; in gc_create_destructor_fiber()
/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.c122 SG(fci_cache) = empty_fcall_info_cache; in PHP_FUNCTION()
142 if (zend_fcall_info_init(callback, 0, &fci, &SG(fci_cache), NULL, &callback_error) == SUCCESS) { in sapi_run_header_callback()
145 error = zend_call_function(&fci, &SG(fci_cache)); in sapi_run_header_callback()
/php-src/ext/session/
H A Dsession.c2184 &shutdown_function_entry.fci_cache, NULL, NULL); in PHP_FUNCTION()
2843 &shutdown_function_entry.fci_cache, NULL, NULL); in PHP_FUNCTION()

Completed in 93 milliseconds