Lines Matching refs:ccontext

9639    int *errorptr, PCRE2_SIZE *erroroffset, pcre2_compile_context *ccontext)  in pcre2_compile()  argument
9707 if (ccontext == NULL) in pcre2_compile()
9708 ccontext = (pcre2_compile_context *)(&PRIV(default_compile_context)); in pcre2_compile()
9717 (ccontext->extra_options & ~PUBLIC_COMPILE_EXTRA_OPTIONS) != 0) in pcre2_compile()
9725 (ccontext->extra_options & ~PUBLIC_LITERAL_COMPILE_EXTRA_OPTIONS) != 0)) in pcre2_compile()
9737 if (patlen > ccontext->max_pattern_length) in pcre2_compile()
9749 tables = (ccontext->tables != NULL)? ccontext->tables : PRIV(default_tables); in pcre2_compile()
9758 cb.cx = ccontext; in pcre2_compile()
9920 if ((ccontext->extra_options & PCRE2_EXTRA_ALLOW_SURROGATE_ESCAPES) != 0) in pcre2_compile()
9939 if (bsr == 0) bsr = ccontext->bsr_convention; in pcre2_compile()
9943 if (newline == 0) newline = ccontext->newline_convention; in pcre2_compile()
10010 if ((ccontext->extra_options & in pcre2_compile()
10019 uint32_t *heap_parsed_pattern = ccontext->memctl.malloc( in pcre2_compile()
10020 (parsed_size_needed + 1) * sizeof(uint32_t), ccontext->memctl.memory_data); in pcre2_compile()
10046 cb.groupinfo = ccontext->memctl.malloc( in pcre2_compile()
10047 (cb.bracount + 1)*sizeof(uint32_t), ccontext->memctl.memory_data); in pcre2_compile()
10125 ccontext->memctl.malloc(re_blocksize, ccontext->memctl.memory_data); in pcre2_compile()
10139 re->memctl = ccontext->memctl; in pcre2_compile()
10147 re->extra_options = ccontext->extra_options; in pcre2_compile()
10472 ccontext->memctl.free(cb.parsed_pattern, ccontext->memctl.memory_data); in pcre2_compile()
10474 ccontext->memctl.free((void *)cb.named_groups, ccontext->memctl.memory_data); in pcre2_compile()
10476 ccontext->memctl.free((void *)cb.groupinfo, ccontext->memctl.memory_data); in pcre2_compile()