Home
last modified time | relevance | path

Searched refs:zend_fcall_info_cache (Results 1 – 25 of 35) sorted by relevance

12

/PHP-7.1/ext/curl/
H A Dphp_curl.h131 zend_fcall_info_cache fci_cache;
140 zend_fcall_info_cache fci_cache;
149 zend_fcall_info_cache fci_cache;
/PHP-7.1/ext/pdo_sqlite/
H A Dphp_pdo_sqlite_int.h35 zend_fcall_info_cache fcc;
/PHP-7.1/ext/standard/
H A Dbasic_functions.h177 zend_fcall_info_cache array_walk_fci_cache;
179 zend_fcall_info_cache user_compare_fci_cache;
H A Darray.c1002 zend_fcall_info_cache old_user_compare_fci_cache \
1414 zend_fcall_info_cache orig_array_walk_fci_cache; in php_array_walk()
1494 zend_fcall_info_cache orig_array_walk_fci_cache; in PHP_FUNCTION()
1524 zend_fcall_info_cache orig_array_walk_fci_cache; in PHP_FUNCTION()
4000 zend_fcall_info_cache fci1_cache = empty_fcall_info_cache, fci2_cache = empty_fcall_info_cache;
4002 zend_fcall_info_cache *fci_key_cache = NULL, *fci_data_cache;
4423 zend_fcall_info_cache fci1_cache = empty_fcall_info_cache, fci2_cache = empty_fcall_info_cache;
4425 zend_fcall_info_cache *fci_key_cache = NULL, *fci_data_cache;
5204 zend_fcall_info_cache fci_cache = empty_fcall_info_cache;
5266 zend_fcall_info_cache fci_cache = empty_fcall_info_cache;
[all …]
H A Dbasic_functions.c4860 zend_fcall_info_cache fci_cache;
4885 zend_fcall_info_cache fci_cache;
4912 zend_fcall_info_cache fci_cache;
4947 zend_fcall_info_cache fci_cache;
/PHP-7.1/ext/sqlite3/
H A Dphp_sqlite3_structs.h49 zend_fcall_info_cache fcc;
/PHP-7.1/ext/spl/
H A Dspl_engine.h59 zend_fcall_info_cache fcc; in spl_instantiate_arg_n()
H A Dspl_iterators.h123 zend_fcall_info_cache fcc;
H A Dphp_spl.c463 zend_fcall_info_cache fcc; in PHP_FUNCTION()
636 zend_fcall_info_cache fcc; in PHP_FUNCTION()
/PHP-7.1/ext/libxml/
H A Dphp_libxml.h52 zend_fcall_info_cache fcc;
H A Dlibxml.c1114 zend_fcall_info_cache fcc; in PHP_FUNCTION()
/PHP-7.1/ext/pdo/
H A Dphp_pdo_driver.h619 zend_fcall_info_cache fcc;
626 zend_fcall_info_cache fcc;
H A Dpdo_stmt.c727 zend_fcall_info_cache *fcc = &stmt->fetch.cls.fcc; in do_fetch_class_prepare()
759 …lable_ex(pdo_stmt_t *stmt, zval *callable, zend_fcall_info * fci, zend_fcall_info_cache * fcc, int… in make_callable_ex()
787 zend_fcall_info_cache *fcc = &stmt->fetch.cls.fcc; in do_fetch_func_prepare()
/PHP-7.1/Zend/
H A Dzend_closures.c119 zend_fcall_info_cache fci_cache; in ZEND_METHOD()
234 zend_fcall_info_cache fcc; in zend_closure_call_magic()
238 memset(&fcc, 0, sizeof(zend_fcall_info_cache)); in zend_closure_call_magic()
263 zend_fcall_info_cache fcc; in zend_create_closure_from_callable()
H A Dzend_API.h60 } zend_fcall_info_cache; typedef
315 …nd_object *object, uint check_flags, zend_string **callable_name, zend_fcall_info_cache *fcc, char…
484 ZEND_API extern const zend_fcall_info_cache empty_fcall_info_cache;
495 …info_init(zval *callable, uint check_flags, zend_fcall_info *fci, zend_fcall_info_cache *fcc, zend…
538 ZEND_API int zend_fcall_info_call(zend_fcall_info *fci, zend_fcall_info_cache *fcc, zval *retval, z…
540 ZEND_API int zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache);
1230 …ine int zend_parse_arg_func(zval *arg, zend_fcall_info *dest_fci, zend_fcall_info_cache *dest_fcc,… in zend_parse_arg_func()
H A Dzend_execute_API.c50 ZEND_API const zend_fcall_info_cache empty_fcall_info_cache = { 0, NULL, NULL, NULL, NULL };
676 int zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache) /* {{{ */ in zend_call_function()
680 zend_fcall_info_cache fci_cache_local; in zend_call_function()
937 zend_fcall_info_cache fcall_cache; in zend_lookup_class_ex()
H A Dzend_API.c697 zend_fcall_info_cache *fcc = va_arg(*va, zend_fcall_info_cache *); in zend_parse_arg_impl()
2824 …_callable_check_class(zend_string *name, zend_class_entry *scope, zend_fcall_info_cache *fcc, int … in zend_is_callable_check_class()
2908 static int zend_is_callable_check_func(int check_flags, zval *callable, zend_fcall_info_cache *fcc,… in zend_is_callable_check_func()
3187 …nd_object *object, uint check_flags, zend_string **callable_name, zend_fcall_info_cache *fcc, char… in zend_is_callable_ex()
3190 zend_fcall_info_cache fcc_local; in zend_is_callable_ex()
3397 zend_fcall_info_cache fcc; in zend_make_callable()
3421 …info_init(zval *callable, uint check_flags, zend_fcall_info *fci, zend_fcall_info_cache *fcc, zend… in zend_fcall_info_init()
3577 ZEND_API int zend_fcall_info_call(zend_fcall_info *fci, zend_fcall_info_cache *fcc, zval *retval_pt… in zend_fcall_info_call()
H A Dzend_interfaces.c62 zend_fcall_info_cache fcic; in zend_call_method()
/PHP-7.1/main/
H A Dphp_output.h120 zend_fcall_info_cache fcc;
H A DSAPI.h137 zend_fcall_info_cache fci_cache;
/PHP-7.1/ext/intl/uchar/
H A Duchar.c182 zend_fcall_info_cache fci_cache;
299 zend_fcall_info_cache fci_cache;
/PHP-7.1/ext/intl/converter/
H A Dconverter.c30 zend_fcall_info_cache to_cache, from_cache;
530 zend_fcall_info_cache *fcache) { in php_converter_resolve_callback()
/PHP-7.1/
H A DREADME.PARAMETER_PARSING_API58 zend_fcall_info and zend_fcall_info_cache)
/PHP-7.1/ext/reflection/
H A Dphp_reflection.c1441 zend_fcall_info_cache fcc; in _reflection_export()
1979 zend_fcall_info_cache fcc; in ZEND_METHOD()
2030 zend_fcall_info_cache fcc; in ZEND_METHOD()
3248 zend_fcall_info_cache fcc; in reflection_method_invoke()
4863 zend_fcall_info_cache fcc; in ZEND_METHOD()
4965 zend_fcall_info_cache fcc; in ZEND_METHOD()
/PHP-7.1/ext/mbstring/
H A Dphp_mbregex.c817 zend_fcall_info_cache arg_replace_fci_cache; in _php_mb_regex_ereg_replace_exec()

Completed in 127 milliseconds

12