php_output_handler_conflict_check_t  556 main/output.c  	php_output_handler_conflict_check_t *conflict;
php_output_handler_conflict_check_t  624 main/output.c  PHPAPI int php_output_handler_conflict_register(const char *name, size_t name_len, php_output_handler_conflict_check_t check_func TSRMLS_DC)
php_output_handler_conflict_check_t  630 main/output.c  	return zend_hash_update(&php_output_handler_conflicts, name, name_len+1, &check_func, sizeof(php_output_handler_conflict_check_t *), NULL);
php_output_handler_conflict_check_t  636 main/output.c  PHPAPI int php_output_handler_reverse_conflict_register(const char *name, size_t name_len, php_output_handler_conflict_check_t check_func TSRMLS_DC)
php_output_handler_conflict_check_t  646 main/output.c  		return zend_hash_next_index_insert(rev_ptr, &check_func, sizeof(php_output_handler_conflict_check_t *), NULL);
php_output_handler_conflict_check_t  649 main/output.c  		if (SUCCESS != zend_hash_next_index_insert(&rev, &check_func, sizeof(php_output_handler_conflict_check_t *), NULL)) {
php_output_handler_conflict_check_t  119 main/php_output.h typedef int (*php_output_handler_conflict_check_t)(const char *handler_name, size_t handler_name_len TSRMLS_DC);
php_output_handler_conflict_check_t  246 main/php_output.h PHPAPI int php_output_handler_conflict_register(const char *handler_name, size_t handler_name_len, php_output_handler_conflict_check_t check_func TSRMLS_DC);
php_output_handler_conflict_check_t  247 main/php_output.h PHPAPI int php_output_handler_reverse_conflict_register(const char *handler_name, size_t handler_name_len, php_output_handler_conflict_check_t check_func TSRMLS_DC);