apply_function 119 Zend/zend_stack.c ZEND_API void zend_stack_apply(zend_stack *stack, int type, int (*apply_function)(void *element)) apply_function 126 Zend/zend_stack.c if (apply_function(stack->elements[i])) { apply_function 133 Zend/zend_stack.c if (apply_function(stack->elements[i])) { apply_function 142 Zend/zend_stack.c ZEND_API void zend_stack_apply_with_argument(zend_stack *stack, int type, int (*apply_function)(void *element, void *arg), void *arg) apply_function 149 Zend/zend_stack.c if (apply_function(stack->elements[i], arg)) { apply_function 156 Zend/zend_stack.c if (apply_function(stack->elements[i], arg)) { apply_function 43 Zend/zend_stack.h ZEND_API void zend_stack_apply(zend_stack *stack, int type, int (*apply_function)(void *element)); apply_function 44 Zend/zend_stack.h ZEND_API void zend_stack_apply_with_argument(zend_stack *stack, int type, int (*apply_function)(void *element, void *arg), void *arg); apply_function 153 sapi/apache_hooks/mod_php5.c int sapi_stack_apply_with_argument_all(sapi_stack *stack, int type, int (*apply_function)(void *element, void *arg), void *arg) apply_function 160 sapi/apache_hooks/mod_php5.c retval = apply_function(stack->elements[i], arg); apply_function 165 sapi/apache_hooks/mod_php5.c retval = apply_function(stack->elements[i], arg); apply_function 173 sapi/apache_hooks/mod_php5.c int sapi_stack_apply_with_argument_stop_if_equals(sapi_stack *stack, int type, int (*apply_function)(void *element, void *arg), void *arg, int stopval) apply_function 180 sapi/apache_hooks/mod_php5.c if ((ret = apply_function(stack->elements[i], arg)) == stopval) { apply_function 187 sapi/apache_hooks/mod_php5.c if ((ret = apply_function(stack->elements[i], arg)) == stopval) { apply_function 196 sapi/apache_hooks/mod_php5.c int sapi_stack_apply_with_argument_stop_if_http_error(sapi_stack *stack, int type, int (*apply_function)(void *element, void *arg), void *arg) apply_function 203 sapi/apache_hooks/mod_php5.c if ((ret = apply_function(stack->elements[i], arg)) > 0) { apply_function 210 sapi/apache_hooks/mod_php5.c if ((ret = apply_function(stack->elements[i], arg)) > 0) {