Home
last modified time | relevance | path

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

/f-stack/app/nginx-1.16.1/src/core/
H A Dngx_regex.h35 int captures; member
52 #define ngx_regex_exec(re, s, captures, size) \ argument
54 captures, size)
H A Dngx_regex.c147 n = pcre_fullinfo(re, NULL, PCRE_INFO_CAPTURECOUNT, &rc->captures); in ngx_regex_compile()
153 if (rc->captures == 0) { in ngx_regex_compile()
/f-stack/app/nginx-1.16.1/src/stream/
H A Dngx_stream_variables.c983 re->ncaptures = rc->captures; in ngx_stream_regex_compile()
1045 if (s->captures == NULL) { in ngx_stream_regex_exec()
1046 s->captures = ngx_palloc(s->connection->pool, len * sizeof(int)); in ngx_stream_regex_exec()
1047 if (s->captures == NULL) { in ngx_stream_regex_exec()
1056 rc = ngx_regex_exec(re->regex, str, s->captures, len); in ngx_stream_regex_exec()
1075 vv->len = s->captures[n + 1] - s->captures[n]; in ngx_stream_regex_exec()
1079 vv->data = &str->data[s->captures[n]]; in ngx_stream_regex_exec()
H A Dngx_stream.h221 int *captures; member
H A Dngx_stream_script.c811 cap = s->captures; in ngx_stream_script_copy_capture_len_code()
839 cap = s->captures; in ngx_stream_script_copy_capture_code()
/f-stack/app/nginx-1.16.1/src/http/modules/
H A Dngx_http_ssi_filter_module.h70 int *captures; member
H A Dngx_http_ssi_filter_module.c1581 value->data = ctx->captures_data + ctx->captures[i]; in ngx_http_ssi_get_variable()
1582 value->len = ctx->captures[i + 1] - ctx->captures[i]; in ngx_http_ssi_get_variable()
1882 int rc, *captures; in ngx_http_ssi_regex_match() local
1903 n = (rgc.captures + 1) * 3; in ngx_http_ssi_regex_match()
1905 captures = ngx_palloc(r->pool, n * sizeof(int)); in ngx_http_ssi_regex_match()
1906 if (captures == NULL) { in ngx_http_ssi_regex_match()
1910 rc = ngx_regex_exec(rgc.regex, str, captures, n); in ngx_http_ssi_regex_match()
1926 ctx->captures = captures; in ngx_http_ssi_regex_match()
1949 value.data = &str->data[captures[n]]; in ngx_http_ssi_regex_match()
1950 value.len = captures[n + 1] - captures[n]; in ngx_http_ssi_regex_match()
H A Dngx_http_fastcgi_module.c3431 int captures[(1 + 2) * 3]; in ngx_http_fastcgi_split() local
3453 n = ngx_regex_exec(flcf->split_regex, &r->uri, captures, (1 + 2) * 3); in ngx_http_fastcgi_split()
3456 f->script_name.len = captures[3] - captures[2]; in ngx_http_fastcgi_split()
3457 f->script_name.data = r->uri.data + captures[2]; in ngx_http_fastcgi_split()
3459 f->path_info.len = captures[5] - captures[4]; in ngx_http_fastcgi_split()
3460 f->path_info.data = r->uri.data + captures[4]; in ngx_http_fastcgi_split()
3584 if (rc.captures != 2) { in ngx_http_fastcgi_split_path_info()
/f-stack/app/nginx-1.16.1/src/http/
H A Dngx_http_variables.c2446 re->ncaptures = rc->captures; in ngx_http_regex_compile()
2507 if (r->captures == NULL || r->realloc_captures) { in ngx_http_regex_exec()
2510 r->captures = ngx_palloc(r->pool, len * sizeof(int)); in ngx_http_regex_exec()
2511 if (r->captures == NULL) { in ngx_http_regex_exec()
2520 rc = ngx_regex_exec(re->regex, s, r->captures, len); in ngx_http_regex_exec()
2539 vv->len = r->captures[n + 1] - r->captures[n]; in ngx_http_regex_exec()
2543 vv->data = &s->data[r->captures[n]]; in ngx_http_regex_exec()
H A Dngx_http_request.h432 int *captures; member
H A Dngx_http_script.c1055 e->buf.len += r->captures[n + 1] - r->captures[n]; in ngx_http_script_regex_start_code()
1253 cap = r->captures; in ngx_http_script_copy_capture_len_code()
1293 cap = r->captures; in ngx_http_script_copy_capture_code()
H A Dngx_http_core_module.h209 unsigned captures:1; member
H A Dngx_http_core_module.c2400 sr->captures = r->captures; in ngx_http_subrequest()
4227 cscf->captures = (rc.captures > 0); in ngx_http_core_server_name()
H A Dngx_http.c1405 || addr[a].default_server->captures in ngx_http_optimize_servers()
/f-stack/freebsd/contrib/device-tree/Bindings/thermal/
H A Dqcom-tsens.yaml16 The IP versions are named v0.1, v1 and v2 in the driver, where v0.1 captures
/f-stack/freebsd/contrib/device-tree/Bindings/media/xilinx/
H A Dxlnx,csi2rxss.yaml16 The subsystem consists of a MIPI D-PHY in slave mode which captures the
/f-stack/dpdk/doc/guides/nics/
H A Dpcap_ring.rst73 The driver captures both the incoming and outgoing packets on that interface.
80 The driver captures only the incoming packets on that interface.
/f-stack/app/nginx-1.16.1/
H A DCHANGES2661 *) Feature: the "if" SSI command supports captures in regular
3175 pair, then captures in regular expressions in a "server_name"
3320 captures, if only parts of an URI were captured.
3720 *) Bugfix: in captures usage in "rewrite" directive; the bug had
3734 *) Feature: regular expression named captures.
4464 *) Bugfix: in an "alias" directive with references to captures of
4484 *) Feature: the "location" directive supports captures in regular
4488 inside a location given by a regular expression with captures.
5300 the regex captures.
7698 *) Feature: the "if" directive supports the captures in regular
[all …]