vv                155 core/ngx_string.c     ngx_variable_value_t  *vv;
vv                241 core/ngx_string.c                 vv = va_arg(args, ngx_variable_value_t *);
vv                243 core/ngx_string.c                 len = ngx_min(((size_t) (last - buf)), vv->len);
vv                244 core/ngx_string.c                 buf = ngx_cpymem(buf, vv->data, len);
vv                309 http/modules/ngx_http_charset_filter_module.c     ngx_http_variable_value_t     *vv;
vv                366 http/modules/ngx_http_charset_filter_module.c     vv = ngx_http_get_indexed_variable(r, charset - NGX_HTTP_CHARSET_VAR);
vv                368 http/modules/ngx_http_charset_filter_module.c     if (vv == NULL || vv->not_found) {
vv                372 http/modules/ngx_http_charset_filter_module.c     name->len = vv->len;
vv                373 http/modules/ngx_http_charset_filter_module.c     name->data = vv->data;
vv                421 http/modules/ngx_http_charset_filter_module.c     ngx_http_variable_value_t     *vv;
vv                446 http/modules/ngx_http_charset_filter_module.c     vv = ngx_http_get_indexed_variable(r, charset - NGX_HTTP_CHARSET_VAR);
vv                448 http/modules/ngx_http_charset_filter_module.c     if (vv == NULL || vv->not_found) {
vv                452 http/modules/ngx_http_charset_filter_module.c     name->len = vv->len;
vv                453 http/modules/ngx_http_charset_filter_module.c     name->data = vv->data;
vv                163 http/modules/ngx_http_geo_module.c     ngx_http_variable_value_t  *vv;
vv                165 http/modules/ngx_http_geo_module.c     vv = (ngx_http_variable_value_t *)
vv                168 http/modules/ngx_http_geo_module.c     *v = *vv;
vv               1155 http/modules/ngx_http_geo_module.c     ngx_http_variable_value_t  *vv;
vv               1243 http/modules/ngx_http_geo_module.c     vv = (ngx_http_variable_value_t *) (base + sizeof(ngx_http_geo_header_t));
vv               1245 http/modules/ngx_http_geo_module.c     while(vv->data) {
vv               1246 http/modules/ngx_http_geo_module.c         len = ngx_align(sizeof(ngx_http_variable_value_t) + vv->len,
vv               1248 http/modules/ngx_http_geo_module.c         ngx_crc32_update(&crc32, (u_char *) vv, len);
vv               1249 http/modules/ngx_http_geo_module.c         vv->data += (size_t) base;
vv               1250 http/modules/ngx_http_geo_module.c         vv = (ngx_http_variable_value_t *) ((u_char *) vv + len);
vv               1252 http/modules/ngx_http_geo_module.c     ngx_crc32_update(&crc32, (u_char *) vv, sizeof(ngx_http_variable_value_t));
vv               1253 http/modules/ngx_http_geo_module.c     vv++;
vv               1255 http/modules/ngx_http_geo_module.c     ranges = (ngx_http_geo_range_t **) vv;
vv               1394 http/modules/ngx_http_geo_module.c     ngx_http_variable_value_t           *vv;
vv               1404 http/modules/ngx_http_geo_module.c     vv = (ngx_http_variable_value_t *) p;
vv               1405 http/modules/ngx_http_geo_module.c     *vv = *gvvn->value;
vv               1407 http/modules/ngx_http_geo_module.c     vv->data = (u_char *) (p - base);
vv                144 http/modules/ngx_http_limit_req_module.c     ngx_http_variable_value_t  *vv;
vv                161 http/modules/ngx_http_limit_req_module.c     vv = ngx_http_get_indexed_variable(r, ctx->index);
vv                163 http/modules/ngx_http_limit_req_module.c     if (vv == NULL || vv->not_found) {
vv                167 http/modules/ngx_http_limit_req_module.c     len = vv->len;
vv                177 http/modules/ngx_http_limit_req_module.c                       &ctx->var, vv);
vv                183 http/modules/ngx_http_limit_req_module.c     hash = ngx_crc32_short(vv->data, len);
vv                189 http/modules/ngx_http_limit_req_module.c     rc = ngx_http_limit_req_lookup(lrcf, hash, vv->data, len, &excess);
vv                221 http/modules/ngx_http_limit_req_module.c         ngx_memcpy(lr->data, vv->data, len);
vv                128 http/modules/ngx_http_limit_zone_module.c     ngx_http_variable_value_t      *vv;
vv                146 http/modules/ngx_http_limit_zone_module.c     vv = ngx_http_get_indexed_variable(r, ctx->index);
vv                148 http/modules/ngx_http_limit_zone_module.c     if (vv == NULL || vv->not_found) {
vv                152 http/modules/ngx_http_limit_zone_module.c     len = vv->len;
vv                162 http/modules/ngx_http_limit_zone_module.c                       &ctx->var, vv);
vv                168 http/modules/ngx_http_limit_zone_module.c     hash = ngx_crc32_short(vv->data, len);
vv                199 http/modules/ngx_http_limit_zone_module.c             rc = ngx_memn2cmp(vv->data, lz->data, len, (size_t) lz->len);
vv                238 http/modules/ngx_http_limit_zone_module.c     ngx_memcpy(lz->data, vv->data, len);
vv                216 http/modules/ngx_http_memcached_module.c     ngx_http_variable_value_t      *vv;
vv                221 http/modules/ngx_http_memcached_module.c     vv = ngx_http_get_indexed_variable(r, mlcf->index);
vv                223 http/modules/ngx_http_memcached_module.c     if (vv == NULL || vv->not_found || vv->len == 0) {
vv                229 http/modules/ngx_http_memcached_module.c     escape = 2 * ngx_escape_uri(NULL, vv->data, vv->len, NGX_ESCAPE_MEMCACHED);
vv                231 http/modules/ngx_http_memcached_module.c     len = sizeof("get ") - 1 + vv->len + escape + sizeof(CRLF) - 1;
vv                255 http/modules/ngx_http_memcached_module.c         b->last = ngx_copy(b->last, vv->data, vv->len);
vv                258 http/modules/ngx_http_memcached_module.c         b->last = (u_char *) ngx_escape_uri(b->last, vv->data, vv->len,
vv               1580 http/modules/ngx_http_ssi_filter_module.c     ngx_http_variable_value_t  *vv;
vv               1709 http/modules/ngx_http_ssi_filter_module.c                 vv = ngx_http_get_variable(r, &var, key);
vv               1710 http/modules/ngx_http_ssi_filter_module.c                 if (vv == NULL) {
vv               1714 http/modules/ngx_http_ssi_filter_module.c                 if (vv->not_found) {
vv               1718 http/modules/ngx_http_ssi_filter_module.c                 part_data = vv->data;
vv               1719 http/modules/ngx_http_ssi_filter_module.c                 part_len = vv->len;
vv               2104 http/modules/ngx_http_ssi_filter_module.c     ngx_http_variable_value_t  *vv;
vv               2116 http/modules/ngx_http_ssi_filter_module.c         vv = ngx_http_get_variable(r, var, key);
vv               2118 http/modules/ngx_http_ssi_filter_module.c         if (vv == NULL) {
vv               2122 http/modules/ngx_http_ssi_filter_module.c         if (!vv->not_found) {
vv               2123 http/modules/ngx_http_ssi_filter_module.c             text.data = vv->data;
vv               2124 http/modules/ngx_http_ssi_filter_module.c             text.len = vv->len;
vv               2263 http/modules/ngx_http_ssi_filter_module.c     ngx_str_t           *name, *value, *vv;
vv               2291 http/modules/ngx_http_ssi_filter_module.c     vv = ngx_http_ssi_get_variable(r, name, key);
vv               2293 http/modules/ngx_http_ssi_filter_module.c     if (vv) {
vv               2294 http/modules/ngx_http_ssi_filter_module.c         *vv = *value;
vv                447 http/ngx_http_variables.c     ngx_http_variable_value_t  *vv;
vv                460 http/ngx_http_variables.c             vv = ngx_palloc(r->pool, sizeof(ngx_http_variable_value_t));
vv                462 http/ngx_http_variables.c             if (vv && v->get_handler(r, vv, v->data) == NGX_OK) {
vv                463 http/ngx_http_variables.c                 return vv;
vv                470 http/ngx_http_variables.c     vv = ngx_palloc(r->pool, sizeof(ngx_http_variable_value_t));
vv                471 http/ngx_http_variables.c     if (vv == NULL) {
vv                477 http/ngx_http_variables.c         if (ngx_http_variable_unknown_header_in(r, vv, (uintptr_t) name)
vv                480 http/ngx_http_variables.c             return vv;
vv                488 http/ngx_http_variables.c         if (ngx_http_variable_unknown_header_out(r, vv, (uintptr_t) name)
vv                491 http/ngx_http_variables.c             return vv;
vv                499 http/ngx_http_variables.c         if (ngx_http_upstream_header_variable(r, vv, (uintptr_t) name)
vv                502 http/ngx_http_variables.c             return vv;
vv                510 http/ngx_http_variables.c         if (ngx_http_variable_cookie(r, vv, (uintptr_t) name) == NGX_OK) {
vv                511 http/ngx_http_variables.c             return vv;
vv                519 http/ngx_http_variables.c         if (ngx_http_variable_argument(r, vv, (uintptr_t) name) == NGX_OK) {
vv                520 http/ngx_http_variables.c             return vv;
vv                526 http/ngx_http_variables.c     vv->not_found = 1;
vv                528 http/ngx_http_variables.c     return vv;
vv               1796 http/ngx_http_variables.c     ngx_http_variable_value_t  *vv;
vv               1832 http/ngx_http_variables.c         vv = &r->variables[index];
vv               1834 http/ngx_http_variables.c         vv->len = r->captures[n + 1] - r->captures[n];
vv               1835 http/ngx_http_variables.c         vv->valid = 1;
vv               1836 http/ngx_http_variables.c         vv->no_cacheable = 0;
vv               1837 http/ngx_http_variables.c         vv->not_found = 0;
vv               1838 http/ngx_http_variables.c         vv->data = &s->data[r->captures[n]];
vv               1848 http/ngx_http_variables.c                        &v[index].name, vv->len, vv->data);