Home
last modified time | relevance | path

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

/PHP-7.1/ext/pcre/pcrelib/
H A Dpcre.h379 unsigned long int match_limit; /* Maximum number of calls to match() */ member
392 unsigned long int match_limit; /* Maximum number of calls to match() */ member
405 unsigned long int match_limit; /* Maximum number of calls to match() */ member
H A Dpcre_exec.c722 if (md->match_call_count++ >= md->match_limit) RRETURN(PCRE_ERROR_MATCHLIMIT); in match()
6502 md->match_limit = MATCH_LIMIT; in pcre_exec()
6518 md->match_limit = extra_data->match_limit; in pcre_exec()
6528 if ((re->flags & PCRE_MLSET) != 0 && re->limit_match < md->match_limit) in pcre_exec()
6529 md->match_limit = re->limit_match; in pcre_exec()
H A Dpcre_internal.h2515 unsigned long int match_limit; /* As it says */ member
H A Dpcre_jit_compile.c10438 …data->flags & PCRE_EXTRA_MATCH_LIMIT) == 0) ? MATCH_LIMIT : (pcre_uint32)(extra_data->match_limit); in PRIV()
10531 …data->flags & PCRE_EXTRA_MATCH_LIMIT) == 0) ? MATCH_LIMIT : (pcre_uint32)(extra_data->match_limit); in pcre_jit_exec()
H A DChangeLog4686 . In the match_data structure, match_limit was an unsigned long int, whereas
5044 match_limit a way of specifying a limit on match() calls for a specific
/PHP-7.1/ext/pcre/
H A Dphp_pcre.c546 extra->match_limit = (unsigned long)PCRE_G(backtrack_limit); in pcre_get_compiled_regex_cache()
794 extra->match_limit = (unsigned long)PCRE_G(backtrack_limit); in php_pcre_match_impl()
1208 extra->match_limit = (unsigned long)PCRE_G(backtrack_limit); in php_pcre_replace_impl()
1825 extra->match_limit = (unsigned long)PCRE_G(backtrack_limit); in php_pcre_split_impl()
2087 extra->match_limit = (unsigned long)PCRE_G(backtrack_limit); in php_pcre_grep_impl()
/PHP-7.1/ext/pcre/pcrelib/doc/
H A Dpcre.txt3110 unsigned long int match_limit;
3139 The match_limit field provides a means of preventing PCRE from using up
3146 repeatedly (sometimes recursively). The limit set by match_limit is
3155 that goes on for a very long time, and so the match_limit value is also
3162 pcre_extra block in which match_limit is set, and
3175 The match_limit_recursion field is similar to match_limit, but instead
3179 sive. This limit is of use only if it is set smaller than match_limit.
3189 match_limit. You can override the default by suppling pcre_exec() with
3657 The backtracking limit, as specified by the match_limit field in a
4239 that contains a setting of the match_limit or match_limit_recursion
[all …]

Completed in 115 milliseconds