mcf 221 http/modules/ngx_http_charset_filter_module.c ngx_http_charset_main_conf_t *mcf; mcf 274 http/modules/ngx_http_charset_filter_module.c mcf = ngx_http_get_module_main_conf(r, ngx_http_charset_filter_module); mcf 275 http/modules/ngx_http_charset_filter_module.c charsets = mcf->charsets.elts; mcf 311 http/modules/ngx_http_charset_filter_module.c ngx_http_charset_main_conf_t *mcf; mcf 360 http/modules/ngx_http_charset_filter_module.c mcf = ngx_http_get_module_main_conf(r, ngx_http_charset_filter_module); mcf 361 http/modules/ngx_http_charset_filter_module.c charsets = mcf->charsets.elts; mcf 423 http/modules/ngx_http_charset_filter_module.c ngx_http_charset_main_conf_t *mcf; mcf 440 http/modules/ngx_http_charset_filter_module.c mcf = ngx_http_get_module_main_conf(r, ngx_http_charset_filter_module); mcf 441 http/modules/ngx_http_charset_filter_module.c charsets = mcf->charsets.elts; mcf 464 http/modules/ngx_http_charset_filter_module.c ngx_http_charset_main_conf_t *mcf; mcf 466 http/modules/ngx_http_charset_filter_module.c mcf = ngx_http_get_module_main_conf(r, ngx_http_charset_filter_module); mcf 468 http/modules/ngx_http_charset_filter_module.c charset = mcf->charsets.elts; mcf 469 http/modules/ngx_http_charset_filter_module.c n = mcf->charsets.nelts; mcf 1168 http/modules/ngx_http_charset_filter_module.c ngx_http_charset_main_conf_t *mcf = conf; mcf 1182 http/modules/ngx_http_charset_filter_module.c src = ngx_http_add_charset(&mcf->charsets, &value[1]); mcf 1187 http/modules/ngx_http_charset_filter_module.c dst = ngx_http_add_charset(&mcf->charsets, &value[2]); mcf 1199 http/modules/ngx_http_charset_filter_module.c table = mcf->tables.elts; mcf 1200 http/modules/ngx_http_charset_filter_module.c for (i = 0; i < mcf->tables.nelts; i++) { mcf 1211 http/modules/ngx_http_charset_filter_module.c table = ngx_array_push(&mcf->tables); mcf 1273 http/modules/ngx_http_charset_filter_module.c charset = mcf->charsets.elts; mcf 1398 http/modules/ngx_http_charset_filter_module.c ngx_http_charset_main_conf_t *mcf; mcf 1431 http/modules/ngx_http_charset_filter_module.c mcf = ngx_http_conf_get_module_main_conf(cf, mcf 1434 http/modules/ngx_http_charset_filter_module.c *cp = ngx_http_add_charset(&mcf->charsets, &value[1]); mcf 1487 http/modules/ngx_http_charset_filter_module.c ngx_http_charset_main_conf_t *mcf; mcf 1489 http/modules/ngx_http_charset_filter_module.c mcf = ngx_pcalloc(cf->pool, sizeof(ngx_http_charset_main_conf_t)); mcf 1490 http/modules/ngx_http_charset_filter_module.c if (mcf == NULL) { mcf 1494 http/modules/ngx_http_charset_filter_module.c if (ngx_array_init(&mcf->charsets, cf->pool, 2, sizeof(ngx_http_charset_t)) mcf 1500 http/modules/ngx_http_charset_filter_module.c if (ngx_array_init(&mcf->tables, cf->pool, 1, mcf 1507 http/modules/ngx_http_charset_filter_module.c if (ngx_array_init(&mcf->recodes, cf->pool, 2, mcf 1514 http/modules/ngx_http_charset_filter_module.c return mcf; mcf 1551 http/modules/ngx_http_charset_filter_module.c ngx_http_charset_main_conf_t *mcf; mcf 1579 http/modules/ngx_http_charset_filter_module.c mcf = ngx_http_conf_get_module_main_conf(cf, mcf 1581 http/modules/ngx_http_charset_filter_module.c recode = mcf->recodes.elts; mcf 1582 http/modules/ngx_http_charset_filter_module.c for (i = 0; i < mcf->recodes.nelts; i++) { mcf 1590 http/modules/ngx_http_charset_filter_module.c recode = ngx_array_push(&mcf->recodes); mcf 1611 http/modules/ngx_http_charset_filter_module.c ngx_http_charset_main_conf_t *mcf; mcf 1613 http/modules/ngx_http_charset_filter_module.c mcf = ngx_http_conf_get_module_main_conf(cf, mcf 1616 http/modules/ngx_http_charset_filter_module.c recode = mcf->recodes.elts; mcf 1617 http/modules/ngx_http_charset_filter_module.c tables = mcf->tables.elts; mcf 1618 http/modules/ngx_http_charset_filter_module.c charset = mcf->charsets.elts; mcf 1620 http/modules/ngx_http_charset_filter_module.c for (i = 0; i < mcf->recodes.nelts; i++) { mcf 1624 http/modules/ngx_http_charset_filter_module.c for (t = 0; t < mcf->tables.nelts; t++) { mcf 1645 http/modules/ngx_http_charset_filter_module.c for (t = 0; t < mcf->tables.nelts; t++) { mcf 1650 http/modules/ngx_http_charset_filter_module.c src = ngx_pcalloc(cf->pool, sizeof(u_char *) * mcf->charsets.nelts); mcf 1661 http/modules/ngx_http_charset_filter_module.c dst = ngx_pcalloc(cf->pool, sizeof(u_char *) * mcf->charsets.nelts); mcf 158 http/modules/ngx_http_map_module.c ngx_http_map_conf_t *mcf; mcf 160 http/modules/ngx_http_map_module.c mcf = ngx_palloc(cf->pool, sizeof(ngx_http_map_conf_t)); mcf 161 http/modules/ngx_http_map_module.c if (mcf == NULL) { mcf 165 http/modules/ngx_http_map_module.c mcf->hash_max_size = NGX_CONF_UNSET_UINT; mcf 166 http/modules/ngx_http_map_module.c mcf->hash_bucket_size = NGX_CONF_UNSET_UINT; mcf 168 http/modules/ngx_http_map_module.c return mcf; mcf 175 http/modules/ngx_http_map_module.c ngx_http_map_conf_t *mcf = conf; mcf 187 http/modules/ngx_http_map_module.c if (mcf->hash_max_size == NGX_CONF_UNSET_UINT) { mcf 188 http/modules/ngx_http_map_module.c mcf->hash_max_size = 2048; mcf 191 http/modules/ngx_http_map_module.c if (mcf->hash_bucket_size == NGX_CONF_UNSET_UINT) { mcf 192 http/modules/ngx_http_map_module.c mcf->hash_bucket_size = ngx_cacheline_size; mcf 195 http/modules/ngx_http_map_module.c mcf->hash_bucket_size = ngx_align(mcf->hash_bucket_size, mcf 287 http/modules/ngx_http_map_module.c hash.max_size = mcf->hash_max_size; mcf 288 http/modules/ngx_http_map_module.c hash.bucket_size = mcf->hash_bucket_size;