Home
last modified time | relevance | path

Searched refs:vv (Results 1 – 18 of 18) sorted by relevance

/f-stack/app/nginx-1.16.1/src/http/modules/
H A Dngx_http_auth_request_module.c237 ngx_http_variable_value_t *vv; in ngx_http_auth_request_set_variables() local
260 vv = &r->variables[av->index]; in ngx_http_auth_request_set_variables()
268 vv->valid = 1; in ngx_http_auth_request_set_variables()
269 vv->not_found = 0; in ngx_http_auth_request_set_variables()
270 vv->data = val.data; in ngx_http_auth_request_set_variables()
271 vv->len = val.len; in ngx_http_auth_request_set_variables()
279 av->set_handler(r, vv, v[av->index].data); in ngx_http_auth_request_set_variables()
H A Dngx_http_memcached_module.c245 ngx_http_variable_value_t *vv; in ngx_http_memcached_create_request() local
250 vv = ngx_http_get_indexed_variable(r, mlcf->index); in ngx_http_memcached_create_request()
252 if (vv == NULL || vv->not_found || vv->len == 0) { in ngx_http_memcached_create_request()
258 escape = 2 * ngx_escape_uri(NULL, vv->data, vv->len, NGX_ESCAPE_MEMCACHED); in ngx_http_memcached_create_request()
260 len = sizeof("get ") - 1 + vv->len + escape + sizeof(CRLF) - 1; in ngx_http_memcached_create_request()
284 b->last = ngx_copy(b->last, vv->data, vv->len); in ngx_http_memcached_create_request()
287 b->last = (u_char *) ngx_escape_uri(b->last, vv->data, vv->len, in ngx_http_memcached_create_request()
H A Dngx_http_geo_module.c182 ngx_http_variable_value_t *vv; in ngx_http_geo_cidr_variable() local
189 vv = (ngx_http_variable_value_t *) in ngx_http_geo_cidr_variable()
220 vv = (ngx_http_variable_value_t *) in ngx_http_geo_cidr_variable()
237 *v = *vv; in ngx_http_geo_cidr_variable()
1419 ngx_http_variable_value_t *vv; in ngx_http_geo_include_binary_base() local
1510 while (vv->data) { in ngx_http_geo_include_binary_base()
1514 vv->data += (size_t) base; in ngx_http_geo_include_binary_base()
1515 vv = (ngx_http_variable_value_t *) ((u_char *) vv + len); in ngx_http_geo_include_binary_base()
1518 vv++; in ngx_http_geo_include_binary_base()
1670 *vv = *gvvn->value; in ngx_http_geo_copy_values()
[all …]
H A Dngx_http_userid_filter_module.c461 ngx_http_variable_value_t *vv; in ngx_http_userid_create_uid() local
473 vv = ngx_http_get_indexed_variable(r, ngx_http_userid_reset_index); in ngx_http_userid_create_uid()
475 if (vv == NULL || vv->not_found) { in ngx_http_userid_create_uid()
479 if (vv->len == 0 || (vv->len == 1 && vv->data[0] == '0')) { in ngx_http_userid_create_uid()
499 if (vv->len == 3 && ngx_strncmp(vv->data, "log", 3) == 0) { in ngx_http_userid_create_uid()
H A Dngx_http_ssi_filter_module.c1635 ngx_http_variable_value_t *vv; in ngx_http_ssi_evaluate_string() local
1765 if (vv == NULL) { in ngx_http_ssi_evaluate_string()
1774 part_len = vv->len; in ngx_http_ssi_evaluate_string()
1956 if (vv) { in ngx_http_ssi_regex_match()
1957 *vv = value; in ngx_http_ssi_regex_match()
2269 if (vv == NULL) { in ngx_http_ssi_echo()
2273 if (!vv->not_found) { in ngx_http_ssi_echo()
2274 text.data = vv->data; in ngx_http_ssi_echo()
2275 text.len = vv->len; in ngx_http_ssi_echo()
2445 if (vv) { in ngx_http_ssi_set()
[all …]
H A Dngx_http_charset_filter_module.c321 ngx_http_variable_value_t *vv; in ngx_http_destination_charset() local
371 vv = ngx_http_get_indexed_variable(r, charset - NGX_HTTP_CHARSET_VAR); in ngx_http_destination_charset()
373 if (vv == NULL || vv->not_found) { in ngx_http_destination_charset()
377 name->len = vv->len; in ngx_http_destination_charset()
378 name->data = vv->data; in ngx_http_destination_charset()
426 ngx_http_variable_value_t *vv; in ngx_http_source_charset() local
451 vv = ngx_http_get_indexed_variable(r, charset - NGX_HTTP_CHARSET_VAR); in ngx_http_source_charset()
453 if (vv == NULL || vv->not_found) { in ngx_http_source_charset()
457 name->len = vv->len; in ngx_http_source_charset()
458 name->data = vv->data; in ngx_http_source_charset()
/f-stack/app/nginx-1.16.1/src/stream/
H A Dngx_stream_variables.c399 ngx_stream_variable_value_t *vv; in ngx_stream_get_variable() local
422 if (vv && v->get_handler(s, vv, v->data) == NGX_OK) { in ngx_stream_get_variable()
424 return vv; in ngx_stream_get_variable()
432 if (vv == NULL) { in ngx_stream_get_variable()
452 return vv; in ngx_stream_get_variable()
458 vv->not_found = 1; in ngx_stream_get_variable()
460 return vv; in ngx_stream_get_variable()
1073 vv = &s->variables[index]; in ngx_stream_regex_exec()
1076 vv->valid = 1; in ngx_stream_regex_exec()
1077 vv->no_cacheable = 0; in ngx_stream_regex_exec()
[all …]
H A Dngx_stream_geo_module.c173 ngx_stream_variable_value_t *vv; in ngx_stream_geo_cidr_variable() local
180 vv = (ngx_stream_variable_value_t *) in ngx_stream_geo_cidr_variable()
228 *v = *vv; in ngx_stream_geo_cidr_variable()
1345 ngx_stream_variable_value_t *vv; in ngx_stream_geo_include_binary_base() local
1434 vv = (ngx_stream_variable_value_t *) in ngx_stream_geo_include_binary_base()
1437 while (vv->data) { in ngx_stream_geo_include_binary_base()
1441 vv->data += (size_t) base; in ngx_stream_geo_include_binary_base()
1442 vv = (ngx_stream_variable_value_t *) ((u_char *) vv + len); in ngx_stream_geo_include_binary_base()
1446 vv++; in ngx_stream_geo_include_binary_base()
1598 *vv = *gvvn->value; in ngx_stream_geo_copy_values()
[all …]
/f-stack/app/nginx-1.16.1/src/http/modules/perl/
H A Dnginx.xs866 ngx_http_variable_value_t *vv; variable
913 vv = ngx_http_get_variable(r, &var, hash);
914 if (vv == NULL) {
918 if (vv->not_found) {
971 vv->len = val.len;
972 vv->valid = 1;
973 vv->no_cacheable = 0;
974 vv->not_found = 0;
975 vv->data = val.data;
980 ngx_http_perl_set_targ(vv->data, vv->len);
/f-stack/dpdk/drivers/net/octeontx/base/
H A Docteontx_pki_var.h65 uint64_t vv : 1; member
129 uint64_t vv : 1;
/f-stack/app/nginx-1.16.1/src/http/
H A Dngx_http_variables.c665 ngx_http_variable_value_t *vv; in ngx_http_get_variable() local
687 if (vv && v->get_handler(r, vv, v->data) == NGX_OK) { in ngx_http_get_variable()
689 return vv; in ngx_http_get_variable()
697 if (vv == NULL) { in ngx_http_get_variable()
717 return vv; in ngx_http_get_variable()
723 vv->not_found = 1; in ngx_http_get_variable()
725 return vv; in ngx_http_get_variable()
2537 vv = &r->variables[index]; in ngx_http_regex_exec()
2540 vv->valid = 1; in ngx_http_regex_exec()
2541 vv->no_cacheable = 0; in ngx_http_regex_exec()
[all …]
/f-stack/app/nginx-1.16.1/src/core/
H A Dngx_string.c174 ngx_variable_value_t *vv; in ngx_vslprintf() local
260 vv = va_arg(args, ngx_variable_value_t *); in ngx_vslprintf()
262 len = ngx_min(((size_t) (last - buf)), vv->len); in ngx_vslprintf()
263 buf = ngx_cpymem(buf, vv->data, len); in ngx_vslprintf()
/f-stack/freebsd/contrib/dev/ice/
H A DREADME163 # lspci -vv -s af:00.0 | grep -i Serial
169 # lspci -vv -s af:00.0 | grep -i Serial | awk '{print $7}' | sed s/-//g
/f-stack/freebsd/contrib/device-tree/Bindings/display/xlnx/
H A Dxlnx,zynqmp-dpsub.yaml26 vv
/f-stack/dpdk/drivers/event/octeontx/
H A Dssovf_worker.h122 if (likely(wqe->s.w2.vv)) { in ssovf_octeontx_wqe_to_pkt()
/f-stack/freebsd/netpfil/ipfw/
H A Dip_fw_table.c356 caddr_t v, vv; in rollback_added_entries() local
366 vv = v + count * ta_buf_sz; in rollback_added_entries()
367 for (i = 0; i < added; i++, v += ta_buf_sz, vv += ta_buf_sz) { in rollback_added_entries()
381 error = ta->prepare_del(ch, ptei, vv); in rollback_added_entries()
383 error = ta->del(tc->astate, tinfo, ptei, vv, &num); in rollback_added_entries()
/f-stack/dpdk/doc/guides/linux_gsg/
H A Dnic_perf_intel_platform.rst78 lspci -s 03:00.1 -vv | grep LnkSta
/f-stack/freebsd/contrib/zstd/
H A DCHANGELOG137 cli: Expose cpu load indicator for each file on -vv mode by @ephiepark (#1631)