Home | History | Annotate | Download | only in src

Lines Matching defs:match_context

62 pcre2_match_context *match_context = NULL;
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);