indices            20 http/modules/ngx_http_index_module.c     ngx_array_t             *indices;    /* array of ngx_http_index_t */
indices           129 http/modules/ngx_http_index_module.c     index = ilcf->indices->elts;
indices           130 http/modules/ngx_http_index_module.c     for (i = 0; i < ilcf->indices->nelts; i++) {
indices           372 http/modules/ngx_http_index_module.c     conf->indices = NULL;
indices           387 http/modules/ngx_http_index_module.c     if (conf->indices == NULL) {
indices           388 http/modules/ngx_http_index_module.c         conf->indices = prev->indices;
indices           392 http/modules/ngx_http_index_module.c     if (conf->indices == NULL) {
indices           393 http/modules/ngx_http_index_module.c         conf->indices = ngx_array_create(cf->pool, 1, sizeof(ngx_http_index_t));
indices           394 http/modules/ngx_http_index_module.c         if (conf->indices == NULL) {
indices           398 http/modules/ngx_http_index_module.c         index = ngx_array_push(conf->indices);
indices           448 http/modules/ngx_http_index_module.c     if (ilcf->indices == NULL) {
indices           449 http/modules/ngx_http_index_module.c         ilcf->indices = ngx_array_create(cf->pool, 2, sizeof(ngx_http_index_t));
indices           450 http/modules/ngx_http_index_module.c         if (ilcf->indices == NULL) {
indices           472 http/modules/ngx_http_index_module.c         index = ngx_array_push(ilcf->indices);
indices           539 http/ngx_http_script.c     ngx_array_t *indices)
indices           543 http/ngx_http_script.c     if (indices) {
indices           544 http/ngx_http_script.c         index = indices->elts;
indices           545 http/ngx_http_script.c         for (n = 0; n < indices->nelts; n++) {
indices           224 http/ngx_http_script.h     ngx_array_t *indices);