Home
last modified time | relevance | path

Searched refs:apply_func (Results 1 – 8 of 8) sorted by relevance

/PHP-7.4/Zend/
H A Dzend_ts_hash.c157 ZEND_API void zend_ts_hash_apply(TsHashTable *ht, apply_func_t apply_func) in zend_ts_hash_apply() argument
160 zend_hash_apply(TS_HASH(ht), apply_func); in zend_ts_hash_apply()
164 ZEND_API void zend_ts_hash_apply_with_argument(TsHashTable *ht, apply_func_arg_t apply_func, void *… in zend_ts_hash_apply_with_argument() argument
167 zend_hash_apply_with_argument(TS_HASH(ht), apply_func, argument); in zend_ts_hash_apply_with_argument()
171 ZEND_API void zend_ts_hash_apply_with_arguments(TsHashTable *ht, apply_func_args_t apply_func, int … in zend_ts_hash_apply_with_arguments() argument
177 zend_hash_apply_with_arguments(TS_HASH(ht), apply_func, num_args, args); in zend_ts_hash_apply_with_arguments()
182 ZEND_API void zend_ts_hash_reverse_apply(TsHashTable *ht, apply_func_t apply_func) in zend_ts_hash_reverse_apply() argument
185 zend_hash_reverse_apply(TS_HASH(ht), apply_func); in zend_ts_hash_reverse_apply()
H A Dzend_ts_hash.h56 ZEND_API void zend_ts_hash_apply(TsHashTable *ht, apply_func_t apply_func);
57 ZEND_API void zend_ts_hash_apply_with_argument(TsHashTable *ht, apply_func_arg_t apply_func, void *…
58 ZEND_API void zend_ts_hash_apply_with_arguments(TsHashTable *ht, apply_func_args_t apply_func, int,…
60 ZEND_API void zend_ts_hash_reverse_apply(TsHashTable *ht, apply_func_t apply_func);
H A Dzend_hash.c1801 ZEND_API void ZEND_FASTCALL zend_hash_apply(HashTable *ht, apply_func_t apply_func) in zend_hash_apply() argument
1812 result = apply_func(&p->val); in zend_hash_apply()
1825 …_FASTCALL zend_hash_apply_with_argument(HashTable *ht, apply_func_arg_t apply_func, void *argument) in zend_hash_apply_with_argument() argument
1836 result = apply_func(&p->val, argument); in zend_hash_apply_with_argument()
1849 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
1866 result = apply_func(&p->val, num_args, args, &hash_key); in zend_hash_apply_with_arguments()
1881 ZEND_API void ZEND_FASTCALL zend_hash_reverse_apply(HashTable *ht, apply_func_t apply_func) in zend_hash_reverse_apply() argument
1895 result = apply_func(&p->val); in zend_hash_reverse_apply()
H A Dzend_hash.h153 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);
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_plugin.c167 PHPAPI void mysqlnd_plugin_apply_with_argument(apply_func_arg_t apply_func, void * argument) in mysqlnd_plugin_apply_with_argument() argument
173 result = apply_func(val, argument); in mysqlnd_plugin_apply_with_argument()
H A Dmysqlnd.h74 PHPAPI void mysqlnd_plugin_apply_with_argument(apply_func_arg_t apply_func, void * argument);
/PHP-7.4/ext/spl/
H A Dspl_iterators.h170 PHPAPI int spl_iterator_apply(zval *obj, spl_iterator_apply_func_t apply_func, void *puser);
H A Dspl_iterators.c3481 PHPAPI int spl_iterator_apply(zval *obj, spl_iterator_apply_func_t apply_func, void *puser) in spl_iterator_apply() argument
3504 if (apply_func(iter, puser) == ZEND_HASH_APPLY_STOP || EG(exception)) { in spl_iterator_apply()

Completed in 36 milliseconds