Lines Matching refs:ccontext
9115 int *errorptr, PCRE2_SIZE *erroroffset, pcre2_compile_context *ccontext) in pcre2_compile() argument
9182 if (ccontext == NULL) in pcre2_compile()
9183 ccontext = (pcre2_compile_context *)(&PRIV(default_compile_context)); in pcre2_compile()
9188 (ccontext->extra_options & ~PUBLIC_COMPILE_EXTRA_OPTIONS) != 0) in pcre2_compile()
9196 (ccontext->extra_options & ~PUBLIC_LITERAL_COMPILE_EXTRA_OPTIONS) != 0)) in pcre2_compile()
9208 if (patlen > ccontext->max_pattern_length) in pcre2_compile()
9220 tables = (ccontext->tables != NULL)? ccontext->tables : PRIV(default_tables); in pcre2_compile()
9229 cb.cx = ccontext; in pcre2_compile()
9391 if ((ccontext->extra_options & PCRE2_EXTRA_ALLOW_SURROGATE_ESCAPES) != 0) in pcre2_compile()
9410 if (bsr == 0) bsr = ccontext->bsr_convention; in pcre2_compile()
9414 if (newline == 0) newline = ccontext->newline_convention; in pcre2_compile()
9481 if ((ccontext->extra_options & in pcre2_compile()
9490 uint32_t *heap_parsed_pattern = ccontext->memctl.malloc( in pcre2_compile()
9491 (parsed_size_needed + 1) * sizeof(uint32_t), ccontext->memctl.memory_data); in pcre2_compile()
9517 cb.groupinfo = ccontext->memctl.malloc( in pcre2_compile()
9518 (cb.bracount + 1)*sizeof(uint32_t), ccontext->memctl.memory_data); in pcre2_compile()
9596 ccontext->memctl.malloc(re_blocksize, ccontext->memctl.memory_data); in pcre2_compile()
9610 re->memctl = ccontext->memctl; in pcre2_compile()
9618 re->extra_options = ccontext->extra_options; in pcre2_compile()
9895 ccontext->memctl.free(cb.parsed_pattern, ccontext->memctl.memory_data); in pcre2_compile()
9897 ccontext->memctl.free((void *)cb.named_groups, ccontext->memctl.memory_data); in pcre2_compile()
9899 ccontext->memctl.free((void *)cb.groupinfo, ccontext->memctl.memory_data); in pcre2_compile()