types              16 http/modules/ngx_http_addition_filter_module.c     ngx_hash_t    types;
types             110 http/modules/ngx_http_addition_filter_module.c     if (ngx_http_test_content_type(r, &conf->types) == NULL) {
types             240 http/modules/ngx_http_addition_filter_module.c     if (ngx_http_merge_types(cf, &conf->types_keys, &conf->types,
types             241 http/modules/ngx_http_addition_filter_module.c                              &prev->types_keys, &prev->types,
types              57 http/modules/ngx_http_charset_filter_module.c     ngx_hash_t                  types;
types             354 http/modules/ngx_http_charset_filter_module.c         if (ngx_http_test_content_type(r, &mlcf->types) == NULL) {
types            1553 http/modules/ngx_http_charset_filter_module.c     if (ngx_http_merge_types(cf, &conf->types_keys, &conf->types,
types            1554 http/modules/ngx_http_charset_filter_module.c                              &prev->types_keys, &prev->types,
types              18 http/modules/ngx_http_gzip_filter_module.c     ngx_hash_t           types;
types             253 http/modules/ngx_http_gzip_filter_module.c         || ngx_http_test_content_type(r, &conf->types) == NULL
types            1135 http/modules/ngx_http_gzip_filter_module.c     if (ngx_http_merge_types(cf, &conf->types_keys, &conf->types,
types            1136 http/modules/ngx_http_gzip_filter_module.c                              &prev->types_keys, &prev->types,
types              24 http/modules/ngx_http_ssi_filter_module.c     ngx_hash_t    types;
types             327 http/modules/ngx_http_ssi_filter_module.c         || ngx_http_test_content_type(r, &slcf->types) == NULL)
types            2777 http/modules/ngx_http_ssi_filter_module.c     if (ngx_http_merge_types(cf, &conf->types_keys, &conf->types,
types            2778 http/modules/ngx_http_ssi_filter_module.c                              &prev->types_keys, &prev->types,
types              16 http/modules/ngx_http_sub_filter_module.c     ngx_hash_t                 types;
types             140 http/modules/ngx_http_sub_filter_module.c         || ngx_http_test_content_type(r, &slcf->types) == NULL)
types             693 http/modules/ngx_http_sub_filter_module.c     if (ngx_http_merge_types(cf, &conf->types_keys, &conf->types,
types             694 http/modules/ngx_http_sub_filter_module.c                              &prev->types_keys, &prev->types,
types              49 http/modules/ngx_http_xslt_filter_module.c     ngx_hash_t           types;
types             181 http/modules/ngx_http_xslt_filter_module.c         || ngx_http_test_content_type(r, &conf->types) == NULL)
types             947 http/modules/ngx_http_xslt_filter_module.c     if (ngx_http_merge_types(cf, &conf->types_keys, &conf->types,
types             948 http/modules/ngx_http_xslt_filter_module.c                              &prev->types_keys, &prev->types,
types            1910 http/ngx_http.c     ngx_array_t     **types;
types            1915 http/ngx_http.c     types = (ngx_array_t **) (p + cmd->offset);
types            1917 http/ngx_http.c     if (*types == (void *) -1) {
types            1923 http/ngx_http.c     if (*types == NULL) {
types            1924 http/ngx_http.c         *types = ngx_array_create(cf->temp_pool, 1, sizeof(ngx_hash_key_t));
types            1925 http/ngx_http.c         if (*types == NULL) {
types            1930 http/ngx_http.c             type = ngx_array_push(*types);
types            1947 http/ngx_http.c             *types = (void *) -1;
types            1954 http/ngx_http.c         type = (*types)->elts;
types            1955 http/ngx_http.c         for (n = 0; n < (*types)->nelts; n++) {
types            1964 http/ngx_http.c         type = ngx_array_push(*types);
types            2044 http/ngx_http.c ngx_http_set_default_types(ngx_conf_t *cf, ngx_array_t **types,
types            2049 http/ngx_http.c     *types = ngx_array_create(cf->temp_pool, 1, sizeof(ngx_hash_key_t));
types            2050 http/ngx_http.c     if (*types == NULL) {
types            2056 http/ngx_http.c         type = ngx_array_push(*types);
types             142 http/ngx_http.h ngx_int_t ngx_http_set_default_types(ngx_conf_t *cf, ngx_array_t **types,
types            2803 http/ngx_http_core_module.c     if (clcf->types == NULL) {
types            2804 http/ngx_http_core_module.c         clcf->types = ngx_array_create(cf->pool, 64, sizeof(ngx_hash_key_t));
types            2805 http/ngx_http_core_module.c         if (clcf->types == NULL) {
types            2856 http/ngx_http_core_module.c         type = clcf->types->elts;
types            2857 http/ngx_http_core_module.c         for (n = 0; n < clcf->types->nelts; n++) {
types            2872 http/ngx_http_core_module.c         type = ngx_array_push(clcf->types);
types            3215 http/ngx_http_core_module.c     if (prev->types && prev->types_hash.buckets == NULL) {
types            3225 http/ngx_http_core_module.c         if (ngx_hash_init(&types_hash, prev->types->elts, prev->types->nelts)
types            3232 http/ngx_http_core_module.c     if (conf->types == NULL) {
types            3233 http/ngx_http_core_module.c         conf->types = prev->types;
types            3237 http/ngx_http_core_module.c     if (conf->types == NULL) {
types            3238 http/ngx_http_core_module.c         conf->types = ngx_array_create(cf->pool, 4, sizeof(ngx_hash_key_t));
types            3239 http/ngx_http_core_module.c         if (conf->types == NULL) {
types            3244 http/ngx_http_core_module.c             type = ngx_array_push(conf->types);
types            3267 http/ngx_http_core_module.c         if (ngx_hash_init(&types_hash, conf->types->elts, conf->types->nelts)
types             329 http/ngx_http_core_module.h     ngx_array_t  *types;