Searched refs:apply_func (Results 1 – 6 of 6) sorted by relevance
/PHP-8.1/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 | 67 PHPAPI void mysqlnd_plugin_apply_with_argument(apply_func_arg_t apply_func, void * argument);
|
/PHP-8.1/ext/spl/ |
H A D | spl_iterators.h | 161 PHPAPI int spl_iterator_apply(zval *obj, spl_iterator_apply_func_t apply_func, void *puser);
|
H A D | spl_iterators.c | 3031 PHPAPI int spl_iterator_apply(zval *obj, spl_iterator_apply_func_t apply_func, void *puser) in spl_iterator_apply() argument 3054 if (apply_func(iter, puser) == ZEND_HASH_APPLY_STOP || EG(exception)) { in spl_iterator_apply()
|
/PHP-8.1/Zend/ |
H A D | zend_hash.c | 1869 ZEND_API void ZEND_FASTCALL zend_hash_apply(HashTable *ht, apply_func_t apply_func) in zend_hash_apply() argument 1880 result = apply_func(&p->val); in zend_hash_apply() 1893 …_FASTCALL zend_hash_apply_with_argument(HashTable *ht, apply_func_arg_t apply_func, void *argument) in zend_hash_apply_with_argument() argument 1904 result = apply_func(&p->val, argument); in zend_hash_apply_with_argument() 1917 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 1934 result = apply_func(&p->val, num_args, args, &hash_key); in zend_hash_apply_with_arguments() 1949 ZEND_API void ZEND_FASTCALL zend_hash_reverse_apply(HashTable *ht, apply_func_t apply_func) in zend_hash_reverse_apply() argument 1963 result = apply_func(&p->val); in zend_hash_reverse_apply()
|
H A D | zend_hash.h | 153 ZEND_API void ZEND_FASTCALL zend_hash_apply(HashTable *ht, apply_func_t apply_func); 154 …id ZEND_FASTCALL zend_hash_apply_with_argument(HashTable *ht, apply_func_arg_t apply_func, void *); 155 ZEND_API void zend_hash_apply_with_arguments(HashTable *ht, apply_func_args_t apply_func, int, ...); 163 ZEND_API void ZEND_FASTCALL zend_hash_reverse_apply(HashTable *ht, apply_func_t apply_func);
|
Completed in 48 milliseconds