HomeSort by relevance Sort by last modified time
    Searched defs:match_context (Results 1 - 3 of 3) sorted by null

  /external/pcre/dist2/src/
pcre2_fuzzsupport.c 62 pcre2_match_context *match_context = NULL; local
170 if (match_context == NULL)
172 match_context = pcre2_match_context_create(NULL);
173 if (match_context == NULL)
180 (void)pcre2_set_match_limit(match_context, 100);
181 (void)pcre2_set_depth_limit(match_context, 100);
182 (void)pcre2_set_callout(match_context, callout_function, &callout_count);
206 match_options, match_data, match_context);
242 (PCRE2_SIZE)match_size, 0, match_options, match_data, match_context,
278 if (match_context != NULL) pcre2_match_context_free(match_context)
    [all...]
pcre2grep.c 236 static pcre2_match_context *match_context; variable
    [all...]
  /external/pcre/pcrecpp/
pcrecpp.cc 316 match_context_ptr match_context = match_context_ptr( local
319 if (!match_context)
323 pcre2_set_match_limit(match_context.get(), options_.match_limit());
326 pcre2_set_recursion_limit(match_context.get(),
348 text.size(), startpos, options, match_data.get(), match_context.get());

Completed in 125 milliseconds