Searched refs:apply_func (Results 1 – 6 of 6) sorted by relevance
/PHP-8.4/ext/mysqlnd/ |
H A D | mysqlnd_plugin.c | 165 PHPAPI void mysqlnd_plugin_apply_with_argument(apply_func_arg_t apply_func, void * argument) in mysqlnd_plugin_apply_with_argument() argument 171 result = apply_func(val, argument); in mysqlnd_plugin_apply_with_argument()
|
H A D | mysqlnd.h | 69 PHPAPI void mysqlnd_plugin_apply_with_argument(apply_func_arg_t apply_func, void * argument);
|
/PHP-8.4/ext/spl/ |
H A D | spl_iterators.h | 116 PHPAPI zend_result spl_iterator_apply(zval *obj, spl_iterator_apply_func_t apply_func, void *puser);
|
H A D | spl_iterators.c | 2929 PHPAPI zend_result spl_iterator_apply(zval *obj, spl_iterator_apply_func_t apply_func, void *puser) in spl_iterator_apply() argument 2952 if (apply_func(iter, puser) == ZEND_HASH_APPLY_STOP || EG(exception)) { in spl_iterator_apply()
|
/PHP-8.4/Zend/ |
H A D | zend_hash.c | 2059 ZEND_API void ZEND_FASTCALL zend_hash_apply(HashTable *ht, apply_func_t apply_func) in zend_hash_apply() argument 2070 result = apply_func(zv); in zend_hash_apply() 2085 result = apply_func(&p->val); in zend_hash_apply() 2109 result = apply_func(zv, argument); in zend_hash_apply_with_argument() 2123 result = apply_func(&p->val, argument); in zend_hash_apply_with_argument() 2137 ZEND_API void zend_hash_apply_with_arguments(HashTable *ht, apply_func_args_t apply_func, int num_a… in zend_hash_apply_with_arguments() argument 2155 result = apply_func(zv, num_args, args, &hash_key); in zend_hash_apply_with_arguments() 2176 result = apply_func(&p->val, num_args, args, &hash_key); in zend_hash_apply_with_arguments() 2192 ZEND_API void ZEND_FASTCALL zend_hash_reverse_apply(HashTable *ht, apply_func_t apply_func) in zend_hash_reverse_apply() argument 2208 result = apply_func(zv); in zend_hash_reverse_apply() [all …]
|
H A D | zend_hash.h | 156 ZEND_API void ZEND_FASTCALL zend_hash_apply(HashTable *ht, apply_func_t apply_func); 157 …id ZEND_FASTCALL zend_hash_apply_with_argument(HashTable *ht, apply_func_arg_t apply_func, void *); 158 ZEND_API void zend_hash_apply_with_arguments(HashTable *ht, apply_func_args_t apply_func, int, ...); 166 ZEND_API void ZEND_FASTCALL zend_hash_reverse_apply(HashTable *ht, apply_func_t apply_func);
|
Completed in 34 milliseconds