Searched refs:match (Results 1 – 13 of 13) sorted by relevance
/unit/src/ |
H A D | nxt_pcre.c | 107 nxt_regex_match_t *match; in nxt_regex_match_create() local 109 match = nxt_mp_get(mp, sizeof(nxt_regex_match_t) + sizeof(int) * size); in nxt_regex_match_create() 110 if (nxt_fast_path(match != NULL)) { in nxt_regex_match_create() 111 match->ovecsize = size; in nxt_regex_match_create() 114 return match; in nxt_regex_match_create() 120 nxt_regex_match_t *match) in nxt_regex_match() argument 125 match->ovec, match->ovecsize); in nxt_regex_match()
|
H A D | nxt_pcre2.c | 113 nxt_regex_match_t *match; in nxt_regex_match_create() local 122 match = pcre2_match_data_create(size, ctx); in nxt_regex_match_create() 123 if (nxt_slow_path(match == NULL)) { in nxt_regex_match_create() 128 return match; in nxt_regex_match_create() 134 nxt_regex_match_t *match) in nxt_regex_match() argument 139 ret = pcre2_match(re->code, (PCRE2_SPTR) subject, length, 0, 0, match, in nxt_regex_match()
|
H A D | nxt_http_route.c | 385 *m++ = match; in nxt_http_route_create() 423 match->items = n; in nxt_http_route_match_create() 436 return match; in nxt_http_route_match_create() 576 return match; in nxt_http_route_match_create() 1268 match = &route->match[0]; in nxt_http_route_resolve() 1277 match++; in nxt_http_route_resolve() 1766 if (!match) { in nxt_http_route_addr_pattern_match() 1774 if (!match) { in nxt_http_route_addr_pattern_match() 1812 if (!match) { in nxt_http_route_addr_pattern_match() 1820 if (!match) { in nxt_http_route_addr_pattern_match() [all …]
|
H A D | nxt_regex.h | 37 size_t length, nxt_regex_match_t *match);
|
/unit/src/nodejs/unit-http/ |
H A D | websocket_request.js | 322 var invalidChar = cookie.name.match(cookieNameValidateRegEx); 330 if (cookie.value.match(cookieValueDQuoteValidateRegEx)) { 331 invalidChar = cookie.value.slice(1, -1).match(cookieValueValidateRegEx); 333 invalidChar = cookie.value.match(cookieValueValidateRegEx); 345 invalidChar = cookie.path.match(controlCharsAndSemicolonRegEx); 360 invalidChar = cookie.domain.match(controlCharsAndSemicolonRegEx);
|
/unit/src/java/nginx/unit/websocket/server/ |
H A D | UriTemplate.java | 103 public Map<String,String> match(UriTemplate candidate) { in match() method in UriTemplate
|
H A D | WsServerContainer.java | 306 pathParams = templateMatch.getUriTemplate().match(pathUriTemplate); in findMapping()
|
/unit/test/ |
H A D | test_routing.py | 31 def route_match(match): argument 33 {"match": match, "action": {"return": 200}} 37 def route_match_invalid(match): argument 39 {"match": match, "action": {"return": 200}}
|
H A D | test_ruby_application.py | 253 (l for l in locales if re.match(pattern, l.upper()) is not None),
|
H A D | test_python_application.py | 583 if any(pattern.match(loc.upper()) for pattern in to_check)
|
/unit/tools/ |
H A D | README.md | 95 echo '{"match":{"uri":"/wp-admin/*"},"action":{"return":403}}' | unitc INSERT /config/routes
|
/unit/docs/ |
H A D | unit-openapi.yaml | 1235 match any host IP addresses) and a port." 4632 - match: 4904 match: 4914 match: 5807 match: 5811 #/config/routes/{stepIndex}/match 5812 #/config/routes/{routeName}/{stepIndex}/match 5867 #/config/routes/{stepIndex}/match/[arguments|cookies|headers] 5868 #/config/routes/{routeName}/{stepIndex}/match/[arguments|cookies|headers] 5875 #/config/routes/{stepIndex}/match/[arguments|cookies|headers] [all …]
|
/unit/src/java/nginx/unit/ |
H A D | Context.java | 212 public boolean match(String url) in match() method in Context.PrefixPattern 716 if (m.pattern_.match(path)) { in CtxFilterChain() 777 if (p.match(path)) { in findServlet() 2310 public boolean match(String url)
|