Home
last modified time | relevance | path

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

123

/php-src/ext/curl/
H A Dcurl_private.h48 zend_fcall_info_cache fcc;
56 zend_fcall_info_cache fcc;
68 zend_fcall_info_cache progress;
69 zend_fcall_info_cache xferinfo;
70 zend_fcall_info_cache fnmatch;
72 zend_fcall_info_cache prereq;
75 zend_fcall_info_cache sshhostkey;
113 zend_fcall_info_cache server_push;
/php-src/ext/pdo_sqlite/
H A Dphp_pdo_sqlite_int.h36 zend_fcall_info_cache func;
37 zend_fcall_info_cache step;
38 zend_fcall_info_cache fini;
45 zend_fcall_info_cache callback;
H A Dsqlite_driver.c321 static int do_callback(zend_fcall_info_cache *fcc, int argc, sqlite3_value **argv, sqlite3_context … in do_callback()
498 zend_fcall_info_cache fcc = empty_fcall_info_cache; in pdo_sqlite_create_function_internal()
556 zend_fcall_info_cache step_fcc = empty_fcall_info_cache; in pdo_sqlite_create_aggregate_internal()
557 zend_fcall_info_cache fini_fcc = empty_fcall_info_cache; in pdo_sqlite_create_aggregate_internal()
633 zend_fcall_info_cache fcc = empty_fcall_info_cache; in pdo_sqlite_create_collation_internal()
/php-src/ext/sqlite3/
H A Dphp_sqlite3_structs.h50 zend_fcall_info_cache func;
51 zend_fcall_info_cache step;
52 zend_fcall_info_cache fini;
60 zend_fcall_info_cache cmp_func;
69 zend_fcall_info_cache authorizer_fcc;
/php-src/Zend/
H A Dzend_lazy_objects.h58 typedef struct _zend_fcall_info_cache zend_fcall_info_cache; typedef
63 zend_fcall_info_cache *initializer_fcc, zend_lazy_object_flags_t flags);
H A Dzend_lazy_objects.c60 zend_fcall_info_cache fcc;
131 static zend_fcall_info_cache* zend_lazy_object_get_initializer_fcc(zend_object *obj) in zend_lazy_object_get_initializer_fcc()
206 zend_fcall_info_cache *initializer_fcc, zend_lazy_object_flags_t flags) in zend_object_make_lazy()
442 zend_fcall_info_cache *initializer = &info->u.initializer.fcc; in zend_lazy_object_init_proxy()
532 zend_fcall_info_cache *initializer = zend_lazy_object_get_initializer_fcc(obj); in zend_lazy_object_init()
717 zend_fcall_info_cache *fcc = &info->u.initializer.fcc; in zend_lazy_object_get_gc()
H A Dzend_fibers.h120 zend_fcall_info_cache fci_cache;
H A Dzend_API.h65 } zend_fcall_info_cache; typedef
414 ZEND_API void zend_release_fcall_info_cache(zend_fcall_info_cache *fcc);
419 uint32_t check_flags, zend_fcall_info_cache *fcc, char **error);
694 ZEND_API extern const zend_fcall_info_cache empty_fcall_info_cache;
750 …tic zend_always_inline bool zend_fcc_equals(const zend_fcall_info_cache* a, const zend_fcall_info_… in zend_fcc_equals()
767 static zend_always_inline void zend_fcc_addref(zend_fcall_info_cache *fcc) in zend_fcc_addref()
786 …_always_inline void zend_fcc_dup(/* restrict */ zend_fcall_info_cache *dest, const zend_fcall_info… in zend_fcc_dup()
788 memcpy(dest, src, sizeof(zend_fcall_info_cache)); in zend_fcc_dup()
792 static zend_always_inline void zend_fcc_dtor(zend_fcall_info_cache *fcc) in zend_fcc_dtor()
803 memcpy(fcc, &empty_fcall_info_cache, sizeof(zend_fcall_info_cache)); in zend_fcc_dtor()
[all …]
H A Dzend_closures.c128 zend_fcall_info_cache fci_cache; in ZEND_METHOD()
287 zend_fcall_info_cache fcc; in ZEND_NAMED_FUNCTION()
291 memset(&fcc, 0, sizeof(zend_fcall_info_cache)); in ZEND_NAMED_FUNCTION()
330 zend_fcall_info_cache fcc; in zend_create_closure_from_callable()
/php-src/ext/zend_test/
H A Dfiber.h32 zend_fcall_info_cache fci_cache;
/php-src/ext/standard/
H A Dbasic_functions.h64 zend_fcall_info_cache user_compare_fci_cache;
127 zend_fcall_info_cache fci_cache;
H A Dbasic_functions.c126 zend_fcall_info_cache fci_cache;
1467 zend_fcall_info_cache fci_cache;
1492 zend_fcall_info_cache fci_cache;
1516 zend_fcall_info_cache fci_cache;
1552 zend_fcall_info_cache fci_cache;
1579 static void fci_addref(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache)
1587 static void fci_release(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache)
/php-src/ext/xml/
H A Dxml.c72 zend_fcall_info_cache startElementHandler;
73 zend_fcall_info_cache endElementHandler;
74 zend_fcall_info_cache characterDataHandler;
76 zend_fcall_info_cache defaultHandler;
78 zend_fcall_info_cache notationDeclHandler;
79 zend_fcall_info_cache externalEntityRefHandler;
81 zend_fcall_info_cache endNamespaceDeclHandler;
440 static void xml_set_handler(zend_fcall_info_cache *const parser_handler, const zend_fcall_info_cach… in xml_set_handler()
1172 zend_fcall_info_cache start_fcc = {0}; in PHP_FUNCTION()
1174 zend_fcall_info_cache end_fcc = {0}; in PHP_FUNCTION()
[all …]
/php-src/ext/pdo_pgsql/
H A Dpdo_pgsql.c152 zend_fcall_info_cache fcc = empty_fcall_info_cache; in PHP_METHOD()
165 H->notice_callback = emalloc(sizeof(zend_fcall_info_cache)); in PHP_METHOD()
H A Dphp_pdo_pgsql_int.h51 zend_fcall_info_cache *notice_callback;
/php-src/ext/dom/
H A Dxpath_callbacks.c31 zend_fcall_info_cache *fcc = Z_PTR_P(zv); in xpath_callbacks_entry_dtor()
96 zend_fcall_info_cache *entry; in php_dom_xpath_callback_ns_get_gc()
195 zend_fcall_info_cache* fcc = emalloc(sizeof(zend_fcall_info)); in php_dom_xpath_callback_ns_update_method_handler()
238 zend_fcall_info_cache* fcc = emalloc(sizeof(zend_fcall_info)); in php_dom_xpath_callback_ns_update_method_handler()
291 …mlXPathContextPtr ctxt, zend_string *ns, zend_string *name, const zend_fcall_info_cache *fcc, php_… in php_dom_xpath_callbacks_update_single_method_handler()
298 zend_fcall_info_cache* allocated_fcc = emalloc(sizeof(zend_fcall_info)); in php_dom_xpath_callbacks_update_single_method_handler()
H A Dxpath_callbacks.h61 …mlXPathContextPtr ctxt, zend_string *ns, zend_string *name, const zend_fcall_info_cache *fcc, php_…
/php-src/win32/
H A Dsignal.c91 zend_fcall_info_cache fcc; in PHP_FUNCTION()
/php-src/ext/pdo/
H A Dphp_pdo_driver.h617 zend_fcall_info_cache fcc;
624 zend_fcall_info_cache fcc;
/php-src/ext/readline/
H A Dreadline.c490 zend_fcall_info_cache fcc; in PHP_FUNCTION()
531 zend_fcall_info_cache fcc; in PHP_FUNCTION()
/php-src/ext/spl/
H A Dphp_spl.c382 zend_fcall_info *fci, zend_fcall_info_cache *fcc) { in autoload_func_info_from_fci()
505 zend_fcall_info_cache fcc; in PHP_FUNCTION()
577 zend_fcall_info_cache fcc; in PHP_FUNCTION()
/php-src/main/
H A Dphp_output.h118 zend_fcall_info_cache fcc;
/php-src/ext/libxml/
H A Dphp_libxml.h48 zend_fcall_info_cache entity_loader_callback;
/php-src/ext/intl/uchar/
H A Duchar.c163 zend_fcall_info_cache fci_cache;
268 zend_fcall_info_cache fci_cache;
/php-src/ext/session/
H A Dsession.c2195 zend_fcall_info_cache open_fcc; in PHP_FUNCTION()
2197 zend_fcall_info_cache close_fcc; in PHP_FUNCTION()
2199 zend_fcall_info_cache read_fcc; in PHP_FUNCTION()
2201 zend_fcall_info_cache write_fcc; in PHP_FUNCTION()
2203 zend_fcall_info_cache destroy_fcc; in PHP_FUNCTION()
2205 zend_fcall_info_cache gc_fcc; in PHP_FUNCTION()
2207 zend_fcall_info_cache create_id_fcc; in PHP_FUNCTION()
2209 zend_fcall_info_cache validate_id_fcc; in PHP_FUNCTION()
2211 zend_fcall_info_cache update_timestamp_fcc; in PHP_FUNCTION()

Completed in 113 milliseconds

123