Home
last modified time | relevance | path

Searched refs:match_limit (Results 1 – 12 of 12) sorted by relevance

/external/pcre/
Dpcregrep.c169 static unsigned long int match_limit = 0; variable
242 …{ OP_LONGNUMBER, N_M_LIMIT, &match_limit, "match-limit=number", "set PCRE match limit option" …
2552 if (match_limit > 0 || match_limit_recursion > 0) in main()
2565 if (match_limit > 0) in main()
2568 hints_list[j]->match_limit = match_limit; in main()
Dpcrecpp.cc516 if (options_.match_limit() > 0) { in TryMatch()
518 extra.match_limit = options_.match_limit(); in TryMatch()
Dpcrecpp.h373 int match_limit() const { return match_limit_; }; in match_limit() function
Dpcregexp.pas270 match_limit : longint; { Maximum number of calls to match() }
Dpcre.h.generic230 unsigned long int match_limit; /* Maximum number of calls to match() */
Dpcre.h.in230 unsigned long int match_limit; /* Maximum number of calls to match() */ member
Dpcretest.c2442 extra->match_limit = n; in main()
2606 PCRE_EXTRA_MATCH_LIMIT, &(extra->match_limit), in main()
Dpcre_exec.c659 if (md->match_call_count++ >= md->match_limit) RRETURN(PCRE_ERROR_MATCHLIMIT); in match()
5650 md->match_limit = MATCH_LIMIT; in pcre_exec()
5664 md->match_limit = extra_data->match_limit; in pcre_exec()
Dpcre_internal.h1700 unsigned long int match_limit; /* As it says */ member
DChangeLog2892 . In the match_data structure, match_limit was an unsigned long int, whereas
3250 match_limit a way of specifying a limit on match() calls for a specific
/external/pcre/doc/
Dpcretest.txt408 ferent values in the match_limit and match_limit_recursion fields of
410 each parameter that allow pcre_exec() to complete. The match_limit num-
Dpcre.txt1961 unsigned long int match_limit;
1983 The match_limit field provides a means of preventing PCRE from using up
1990 edly (sometimes recursively). The limit set by match_limit is imposed
1999 pcre_extra block in which match_limit is set, and
2003 The match_limit_recursion field is similar to match_limit, but instead
2007 sive. This limit is of use only if it is set smaller than match_limit.
2015 match_limit. You can override the default by suppling pcre_exec() with
2434 The backtracking limit, as specified by the match_limit field in a
2846 that contains a setting of the match_limit field. This is not supported
7243 be accessed through the set_match_limit() and match_limit() member
[all …]