apply_func        632 Zend/zend_hash.c ZEND_API void zend_hash_apply(HashTable *ht, apply_func_t apply_func TSRMLS_DC)
apply_func        641 Zend/zend_hash.c 		int result = apply_func(p->pData TSRMLS_CC);
apply_func        657 Zend/zend_hash.c ZEND_API void zend_hash_apply_with_argument(HashTable *ht, apply_func_arg_t apply_func, void *argument TSRMLS_DC)
apply_func        666 Zend/zend_hash.c 		int result = apply_func(p->pData, argument TSRMLS_CC);
apply_func        682 Zend/zend_hash.c ZEND_API void zend_hash_apply_with_arguments(HashTable *ht TSRMLS_DC, apply_func_args_t apply_func, int num_args, ...)
apply_func        701 Zend/zend_hash.c 		result = apply_func(p->pData TSRMLS_CC, num_args, args, &hash_key);
apply_func        720 Zend/zend_hash.c ZEND_API void zend_hash_reverse_apply(HashTable *ht, apply_func_t apply_func TSRMLS_DC)
apply_func        729 Zend/zend_hash.c 		int result = apply_func(p->pData TSRMLS_CC);
apply_func        139 Zend/zend_hash.h ZEND_API void zend_hash_apply(HashTable *ht, apply_func_t apply_func TSRMLS_DC);
apply_func        140 Zend/zend_hash.h ZEND_API void zend_hash_apply_with_argument(HashTable *ht, apply_func_arg_t apply_func, void * TSRMLS_DC);
apply_func        141 Zend/zend_hash.h ZEND_API void zend_hash_apply_with_arguments(HashTable *ht TSRMLS_DC, apply_func_args_t apply_func, int, ...);
apply_func        149 Zend/zend_hash.h ZEND_API void zend_hash_reverse_apply(HashTable *ht, apply_func_t apply_func TSRMLS_DC);
apply_func        158 Zend/zend_ts_hash.c ZEND_API void zend_ts_hash_apply(TsHashTable *ht, apply_func_t apply_func TSRMLS_DC)
apply_func        161 Zend/zend_ts_hash.c 	zend_hash_apply(TS_HASH(ht), apply_func TSRMLS_CC);
apply_func        165 Zend/zend_ts_hash.c ZEND_API void zend_ts_hash_apply_with_argument(TsHashTable *ht, apply_func_arg_t apply_func, void *argument TSRMLS_DC)
apply_func        168 Zend/zend_ts_hash.c 	zend_hash_apply_with_argument(TS_HASH(ht), apply_func, argument TSRMLS_CC);
apply_func        172 Zend/zend_ts_hash.c ZEND_API void zend_ts_hash_apply_with_arguments(TsHashTable *ht TSRMLS_DC, apply_func_args_t apply_func, int num_args, ...)
apply_func        178 Zend/zend_ts_hash.c 	zend_hash_apply_with_arguments(TS_HASH(ht) TSRMLS_CC, apply_func, num_args, args);
apply_func        183 Zend/zend_ts_hash.c ZEND_API void zend_ts_hash_reverse_apply(TsHashTable *ht, apply_func_t apply_func TSRMLS_DC)
apply_func        186 Zend/zend_ts_hash.c 	zend_hash_reverse_apply(TS_HASH(ht), apply_func TSRMLS_CC);
apply_func         73 Zend/zend_ts_hash.h ZEND_API void zend_ts_hash_apply(TsHashTable *ht, apply_func_t apply_func TSRMLS_DC);
apply_func         74 Zend/zend_ts_hash.h ZEND_API void zend_ts_hash_apply_with_argument(TsHashTable *ht, apply_func_arg_t apply_func, void * TSRMLS_DC);
apply_func         75 Zend/zend_ts_hash.h ZEND_API void zend_ts_hash_apply_with_arguments(TsHashTable *ht TSRMLS_DC, apply_func_args_t apply_func, int, ...);
apply_func         77 Zend/zend_ts_hash.h ZEND_API void zend_ts_hash_reverse_apply(TsHashTable *ht, apply_func_t apply_func TSRMLS_DC);
apply_func         75 ext/mysqlnd/mysqlnd.h PHPAPI void _mysqlnd_plugin_apply_with_argument(apply_func_arg_t apply_func, void * argument TSRMLS_DC);
apply_func        170 ext/mysqlnd/mysqlnd_plugin.c PHPAPI void _mysqlnd_plugin_apply_with_argument(apply_func_arg_t apply_func, void * argument TSRMLS_DC)
apply_func        180 ext/mysqlnd/mysqlnd_plugin.c 		int result = apply_func(p->pData, argument TSRMLS_CC);
apply_func       3548 ext/spl/spl_iterators.c PHPAPI int spl_iterator_apply(zval *obj, spl_iterator_apply_func_t apply_func, void *puser TSRMLS_DC)
apply_func       3571 ext/spl/spl_iterators.c 		if (apply_func(iter, puser TSRMLS_CC) == ZEND_HASH_APPLY_STOP || EG(exception)) {
apply_func        172 ext/spl/spl_iterators.h PHPAPI int spl_iterator_apply(zval *obj, spl_iterator_apply_func_t apply_func, void *puser TSRMLS_DC);