Lines Matching refs:apply_func
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()
2099 …_FASTCALL zend_hash_apply_with_argument(HashTable *ht, apply_func_arg_t apply_func, void *argument) in zend_hash_apply_with_argument() argument
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()
2226 result = apply_func(&p->val); in zend_hash_reverse_apply()