Searched refs:apply_func (Results 1 – 8 of 8) sorted by relevance
/PHP-7.2/Zend/ |
H A D | zend_ts_hash.c | 147 ZEND_API void zend_ts_hash_apply(TsHashTable *ht, apply_func_t apply_func) in zend_ts_hash_apply() argument 150 zend_hash_apply(TS_HASH(ht), apply_func); in zend_ts_hash_apply() 154 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 157 zend_hash_apply_with_argument(TS_HASH(ht), apply_func, argument); in zend_ts_hash_apply_with_argument() 161 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 167 zend_hash_apply_with_arguments(TS_HASH(ht), apply_func, num_args, args); in zend_ts_hash_apply_with_arguments() 172 ZEND_API void zend_ts_hash_reverse_apply(TsHashTable *ht, apply_func_t apply_func) in zend_ts_hash_reverse_apply() argument 175 zend_hash_reverse_apply(TS_HASH(ht), apply_func); in zend_ts_hash_reverse_apply()
|
H A D | zend_ts_hash.h | 67 ZEND_API void zend_ts_hash_apply(TsHashTable *ht, apply_func_t apply_func); 68 ZEND_API void zend_ts_hash_apply_with_argument(TsHashTable *ht, apply_func_arg_t apply_func, void *… 69 ZEND_API void zend_ts_hash_apply_with_arguments(TsHashTable *ht, apply_func_args_t apply_func, int,… 71 ZEND_API void zend_ts_hash_reverse_apply(TsHashTable *ht, apply_func_t apply_func);
|
H A D | zend_hash.c | 1496 ZEND_API void ZEND_FASTCALL zend_hash_apply(HashTable *ht, apply_func_t apply_func) in zend_hash_apply() argument 1508 result = apply_func(&p->val); in zend_hash_apply() 1522 …_FASTCALL zend_hash_apply_with_argument(HashTable *ht, apply_func_arg_t apply_func, void *argument) in zend_hash_apply_with_argument() argument 1534 result = apply_func(&p->val, argument); in zend_hash_apply_with_argument() 1548 …STCALL zend_hash_apply_with_arguments(HashTable *ht, apply_func_args_t apply_func, int num_args, .… in zend_hash_apply_with_arguments() argument 1567 result = apply_func(&p->val, num_args, args, &hash_key); in zend_hash_apply_with_arguments() 1584 ZEND_API void ZEND_FASTCALL zend_hash_reverse_apply(HashTable *ht, apply_func_t apply_func) in zend_hash_reverse_apply() argument 1599 result = apply_func(&p->val); in zend_hash_reverse_apply()
|
H A D | zend_hash.h | 146 ZEND_API void ZEND_FASTCALL zend_hash_apply(HashTable *ht, apply_func_t apply_func); 147 …id ZEND_FASTCALL zend_hash_apply_with_argument(HashTable *ht, apply_func_arg_t apply_func, void *); 148 …END_FASTCALL zend_hash_apply_with_arguments(HashTable *ht, apply_func_args_t apply_func, int, ...); 156 ZEND_API void ZEND_FASTCALL zend_hash_reverse_apply(HashTable *ht, apply_func_t apply_func);
|
/PHP-7.2/ext/mysqlnd/ |
H A D | mysqlnd_plugin.c | 167 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 D | mysqlnd.h | 74 PHPAPI void mysqlnd_plugin_apply_with_argument(apply_func_arg_t apply_func, void * argument);
|
/PHP-7.2/ext/spl/ |
H A D | spl_iterators.h | 178 PHPAPI int spl_iterator_apply(zval *obj, spl_iterator_apply_func_t apply_func, void *puser);
|
H A D | spl_iterators.c | 3517 PHPAPI int spl_iterator_apply(zval *obj, spl_iterator_apply_func_t apply_func, void *puser) in spl_iterator_apply() argument 3540 if (apply_func(iter, puser) == ZEND_HASH_APPLY_STOP || EG(exception)) { in spl_iterator_apply()
|
Completed in 49 milliseconds