apply_func 1521 Zend/zend_hash.c ZEND_API void ZEND_FASTCALL zend_hash_apply(HashTable *ht, apply_func_t apply_func) apply_func 1534 Zend/zend_hash.c result = apply_func(&p->val); apply_func 1547 Zend/zend_hash.c ZEND_API void ZEND_FASTCALL zend_hash_apply_with_argument(HashTable *ht, apply_func_arg_t apply_func, void *argument) apply_func 1560 Zend/zend_hash.c result = apply_func(&p->val, argument); apply_func 1573 Zend/zend_hash.c ZEND_API void ZEND_FASTCALL zend_hash_apply_with_arguments(HashTable *ht, apply_func_args_t apply_func, int num_args, ...) apply_func 1593 Zend/zend_hash.c result = apply_func(&p->val, num_args, args, &hash_key); apply_func 1609 Zend/zend_hash.c ZEND_API void ZEND_FASTCALL zend_hash_reverse_apply(HashTable *ht, apply_func_t apply_func) apply_func 1625 Zend/zend_hash.c result = apply_func(&p->val); apply_func 132 Zend/zend_hash.h ZEND_API void ZEND_FASTCALL zend_hash_apply(HashTable *ht, apply_func_t apply_func); apply_func 133 Zend/zend_hash.h ZEND_API void ZEND_FASTCALL zend_hash_apply_with_argument(HashTable *ht, apply_func_arg_t apply_func, void *); apply_func 134 Zend/zend_hash.h ZEND_API void ZEND_FASTCALL zend_hash_apply_with_arguments(HashTable *ht, apply_func_args_t apply_func, int, ...); apply_func 142 Zend/zend_hash.h ZEND_API void ZEND_FASTCALL zend_hash_reverse_apply(HashTable *ht, apply_func_t apply_func); apply_func 147 Zend/zend_ts_hash.c ZEND_API void zend_ts_hash_apply(TsHashTable *ht, apply_func_t apply_func) apply_func 150 Zend/zend_ts_hash.c zend_hash_apply(TS_HASH(ht), apply_func); apply_func 154 Zend/zend_ts_hash.c ZEND_API void zend_ts_hash_apply_with_argument(TsHashTable *ht, apply_func_arg_t apply_func, void *argument) apply_func 157 Zend/zend_ts_hash.c zend_hash_apply_with_argument(TS_HASH(ht), apply_func, argument); apply_func 161 Zend/zend_ts_hash.c ZEND_API void zend_ts_hash_apply_with_arguments(TsHashTable *ht, apply_func_args_t apply_func, int num_args, ...) apply_func 167 Zend/zend_ts_hash.c zend_hash_apply_with_arguments(TS_HASH(ht), apply_func, num_args, args); apply_func 172 Zend/zend_ts_hash.c ZEND_API void zend_ts_hash_reverse_apply(TsHashTable *ht, apply_func_t apply_func) apply_func 175 Zend/zend_ts_hash.c zend_hash_reverse_apply(TS_HASH(ht), apply_func); apply_func 67 Zend/zend_ts_hash.h ZEND_API void zend_ts_hash_apply(TsHashTable *ht, apply_func_t apply_func); apply_func 68 Zend/zend_ts_hash.h ZEND_API void zend_ts_hash_apply_with_argument(TsHashTable *ht, apply_func_arg_t apply_func, void *); apply_func 69 Zend/zend_ts_hash.h ZEND_API void zend_ts_hash_apply_with_arguments(TsHashTable *ht, apply_func_args_t apply_func, int, ...); apply_func 71 Zend/zend_ts_hash.h ZEND_API void zend_ts_hash_reverse_apply(TsHashTable *ht, apply_func_t apply_func); apply_func 74 ext/mysqlnd/mysqlnd.h PHPAPI void mysqlnd_plugin_apply_with_argument(apply_func_arg_t apply_func, void * argument); apply_func 168 ext/mysqlnd/mysqlnd_plugin.c PHPAPI void mysqlnd_plugin_apply_with_argument(apply_func_arg_t apply_func, void * argument) apply_func 174 ext/mysqlnd/mysqlnd_plugin.c result = apply_func(val, argument); apply_func 3490 ext/spl/spl_iterators.c PHPAPI int spl_iterator_apply(zval *obj, spl_iterator_apply_func_t apply_func, void *puser) apply_func 3513 ext/spl/spl_iterators.c if (apply_func(iter, puser) == ZEND_HASH_APPLY_STOP || EG(exception)) { apply_func 178 ext/spl/spl_iterators.h PHPAPI int spl_iterator_apply(zval *obj, spl_iterator_apply_func_t apply_func, void *puser);