Lines Matching refs:mcontext
6299 pcre2_match_context *mcontext) in pcre2_match() argument
6446 if (mcontext != NULL && mcontext->offset_limit != PCRE2_UNSET && in pcre2_match()
6545 match_data, mcontext); in pcre2_match()
6708 if (mcontext == NULL) in pcre2_match()
6710 mcontext = (pcre2_match_context *)(&PRIV(default_match_context)); in pcre2_match()
6713 else mb->memctl = mcontext->memctl; in pcre2_match()
6718 bumpalong_limit = (mcontext->offset_limit == PCRE2_UNSET)? in pcre2_match()
6719 true_end_subject : subject + mcontext->offset_limit; in pcre2_match()
6733 mb->callout = mcontext->callout; in pcre2_match()
6734 mb->callout_data = mcontext->callout_data; in pcre2_match()
6816 mb->heap_limit = (mcontext->heap_limit < re->limit_heap)? in pcre2_match()
6817 mcontext->heap_limit : re->limit_heap; in pcre2_match()
6819 mb->match_limit = (mcontext->match_limit < re->limit_match)? in pcre2_match()
6820 mcontext->match_limit : re->limit_match; in pcre2_match()
6822 mb->match_limit_depth = (mcontext->depth_limit < re->limit_depth)? in pcre2_match()
6823 mcontext->depth_limit : re->limit_depth; in pcre2_match()