HomeSort by relevance Sort by last modified time
    Searched refs:match_limit (Results 1 - 9 of 9) sorted by null

  /external/pcre/dist2/src/
pcre2_jit_match.c 138 arguments.limit_match = (mcontext->match_limit < re->limit_match)?
139 mcontext->match_limit : re->limit_match;
150 arguments.limit_match = (MATCH_LIMIT < re->limit_match)?
151 MATCH_LIMIT : re->limit_match;
pcre2_intmodedep.h 590 uint32_t match_limit; member in struct:pcre2_real_match_context
849 uint32_t match_limit; \/* As it says *\/ member in struct:match_block
901 uint32_t match_limit; \/* As it says *\/ member in struct:dfa_match_block
    [all...]
pcre2_context.c 173 MATCH_LIMIT,
416 mcontext->match_limit = limit;
pcre2_dfa_match.c 546 if (mb->match_call_count++ >= mb->match_limit) return PCRE2_ERROR_MATCHLIMIT;
    [all...]
pcre2grep.c 232 static uint32_t match_limit = 0; variable
420 { OP_U32NUMBER, N_M_LIMIT, &match_limit, "match-limit=number", "set PCRE2 match limit option" },
    [all...]
pcre2_match.c 726 if (mb->match_call_count++ >= mb->match_limit) return PCRE2_ERROR_MATCHLIMIT;
    [all...]
pcre2test.c 647 { "match_limit", MOD_CTM, MOD_INT, 0, MO(match_limit) },
4336 depth_limit, heap_limit, match_limit, minlength, nameentrysize, namecount, local
    [all...]
  /external/pcre/pcrecpp/include/
pcrecpp.h 206 // set_match_limit() and match_limit() member functions.
207 // Setting match_limit to a non-zero value will limit the executation of
210 // stack blowup in a 2MB thread stack. Setting match_limit to zero will
213 // recurses. match_limit() caps the number of matches pcre does;
356 // Only 9 modifiers, plus match_limit and match_limit_recursion,
385 int match_limit() const { return match_limit_; }; function in class:pcrecpp::RE_Options
  /external/pcre/pcrecpp/
pcrecpp.cc 322 if (options_.match_limit() > 0) {
323 pcre2_set_match_limit(match_context.get(), options_.match_limit());

Completed in 168 milliseconds