captures           97 core/ngx_regex.c     n = pcre_fullinfo(re, NULL, PCRE_INFO_CAPTURECOUNT, &rc->captures);
captures          103 core/ngx_regex.c     if (rc->captures == 0) {
captures           30 core/ngx_regex.h     int           captures;
captures           47 core/ngx_regex.h #define ngx_regex_exec(re, s, captures, size)                                \
captures           49 core/ngx_regex.h               captures, size)
captures         2539 http/modules/ngx_http_fastcgi_module.c     int                           captures[(1 + 2) * 3];
captures         2561 http/modules/ngx_http_fastcgi_module.c     n = ngx_regex_exec(flcf->split_regex, &r->uri, captures, (1 + 2) * 3);
captures         2564 http/modules/ngx_http_fastcgi_module.c         f->script_name.len = captures[3] - captures[2];
captures         2565 http/modules/ngx_http_fastcgi_module.c         f->script_name.data = r->uri.data + captures[2];
captures         2567 http/modules/ngx_http_fastcgi_module.c         f->path_info.len = captures[5] - captures[4];
captures         2568 http/modules/ngx_http_fastcgi_module.c         f->path_info.data = r->uri.data + captures[4];
captures         2692 http/modules/ngx_http_fastcgi_module.c     if (rc.captures != 2) {
captures         1427 http/ngx_http.c                 || addr[a].default_server->captures
captures         1897 http/ngx_http_core_module.c         ngx_uint_t  captures;
captures         1899 http/ngx_http_core_module.c         captures = alias && clcf->regex;
captures         1901 http/ngx_http_core_module.c         reserved += captures ? r->add_uri_to_alias ? r->uri.len + 1 : 1
captures         1922 http/ngx_http_core_module.c         if (captures) {
captures         3736 http/ngx_http_core_module.c         cscf->captures = (rc.captures > 0);
captures          189 http/ngx_http_core_module.h     unsigned                    captures:1;
captures          408 http/ngx_http_request.h     int                              *captures;
captures         1026 http/ngx_http_script.c             e->buf.len += r->captures[n + 1] - r->captures[n];
captures         1223 http/ngx_http_script.c         cap = r->captures;
captures         1263 http/ngx_http_script.c         cap = r->captures;
captures         1743 http/ngx_http_variables.c     re->ncaptures = rc->captures;
captures         1804 http/ngx_http_variables.c         if (r->captures == NULL) {
captures         1805 http/ngx_http_variables.c             r->captures = ngx_palloc(r->pool, len * sizeof(int));
captures         1806 http/ngx_http_variables.c             if (r->captures == NULL) {
captures         1815 http/ngx_http_variables.c     rc = ngx_regex_exec(re->regex, s, r->captures, len);
captures         1834 http/ngx_http_variables.c         vv->len = r->captures[n + 1] - r->captures[n];
captures         1838 http/ngx_http_variables.c         vv->data = &s->data[r->captures[n]];