Lines Matching refs:ccontext

9671    int *errorptr, PCRE2_SIZE *erroroffset, pcre2_compile_context *ccontext)  in pcre2_compile()  argument
9739 if (ccontext == NULL) in pcre2_compile()
9740 ccontext = (pcre2_compile_context *)(&PRIV(default_compile_context)); in pcre2_compile()
9749 (ccontext->extra_options & ~PUBLIC_COMPILE_EXTRA_OPTIONS) != 0) in pcre2_compile()
9757 (ccontext->extra_options & ~PUBLIC_LITERAL_COMPILE_EXTRA_OPTIONS) != 0)) in pcre2_compile()
9769 if (patlen > ccontext->max_pattern_length) in pcre2_compile()
9781 tables = (ccontext->tables != NULL)? ccontext->tables : PRIV(default_tables); in pcre2_compile()
9790 cb.cx = ccontext; in pcre2_compile()
9952 if ((ccontext->extra_options & PCRE2_EXTRA_ALLOW_SURROGATE_ESCAPES) != 0) in pcre2_compile()
9971 if (bsr == 0) bsr = ccontext->bsr_convention; in pcre2_compile()
9975 if (newline == 0) newline = ccontext->newline_convention; in pcre2_compile()
10042 if ((ccontext->extra_options & in pcre2_compile()
10051 uint32_t *heap_parsed_pattern = ccontext->memctl.malloc( in pcre2_compile()
10052 (parsed_size_needed + 1) * sizeof(uint32_t), ccontext->memctl.memory_data); in pcre2_compile()
10078 cb.groupinfo = ccontext->memctl.malloc( in pcre2_compile()
10079 (cb.bracount + 1)*sizeof(uint32_t), ccontext->memctl.memory_data); in pcre2_compile()
10158 ccontext->memctl.malloc(re_blocksize, ccontext->memctl.memory_data); in pcre2_compile()
10172 re->memctl = ccontext->memctl; in pcre2_compile()
10180 re->extra_options = ccontext->extra_options; in pcre2_compile()
10505 ccontext->memctl.free(cb.parsed_pattern, ccontext->memctl.memory_data); in pcre2_compile()
10507 ccontext->memctl.free((void *)cb.named_groups, ccontext->memctl.memory_data); in pcre2_compile()
10509 ccontext->memctl.free((void *)cb.groupinfo, ccontext->memctl.memory_data); in pcre2_compile()