Lines Matching refs:ccontext

9763    int *errorptr, PCRE2_SIZE *erroroffset, pcre2_compile_context *ccontext)  in pcre2_compile()  argument
9831 if (ccontext == NULL) in pcre2_compile()
9832 ccontext = (pcre2_compile_context *)(&PRIV(default_compile_context)); in pcre2_compile()
9841 (ccontext->extra_options & ~PUBLIC_COMPILE_EXTRA_OPTIONS) != 0) in pcre2_compile()
9849 (ccontext->extra_options & ~PUBLIC_LITERAL_COMPILE_EXTRA_OPTIONS) != 0)) in pcre2_compile()
9861 if (patlen > ccontext->max_pattern_length) in pcre2_compile()
9873 tables = (ccontext->tables != NULL)? ccontext->tables : PRIV(default_tables); in pcre2_compile()
9882 cb.cx = ccontext; in pcre2_compile()
10044 if ((ccontext->extra_options & PCRE2_EXTRA_ALLOW_SURROGATE_ESCAPES) != 0) in pcre2_compile()
10063 if (bsr == 0) bsr = ccontext->bsr_convention; in pcre2_compile()
10067 if (newline == 0) newline = ccontext->newline_convention; in pcre2_compile()
10134 if ((ccontext->extra_options & in pcre2_compile()
10143 uint32_t *heap_parsed_pattern = ccontext->memctl.malloc( in pcre2_compile()
10144 (parsed_size_needed + 1) * sizeof(uint32_t), ccontext->memctl.memory_data); in pcre2_compile()
10170 cb.groupinfo = ccontext->memctl.malloc( in pcre2_compile()
10171 (cb.bracount + 1)*sizeof(uint32_t), ccontext->memctl.memory_data); in pcre2_compile()
10250 ccontext->memctl.malloc(re_blocksize, ccontext->memctl.memory_data); in pcre2_compile()
10264 re->memctl = ccontext->memctl; in pcre2_compile()
10272 re->extra_options = ccontext->extra_options; in pcre2_compile()
10597 ccontext->memctl.free(cb.parsed_pattern, ccontext->memctl.memory_data); in pcre2_compile()
10599 ccontext->memctl.free((void *)cb.named_groups, ccontext->memctl.memory_data); in pcre2_compile()
10601 ccontext->memctl.free((void *)cb.groupinfo, ccontext->memctl.memory_data); in pcre2_compile()