Lines Matching refs:ccontext

9765    int *errorptr, PCRE2_SIZE *erroroffset, pcre2_compile_context *ccontext)  in pcre2_compile()  argument
9833 if (ccontext == NULL) in pcre2_compile()
9834 ccontext = (pcre2_compile_context *)(&PRIV(default_compile_context)); in pcre2_compile()
9843 (ccontext->extra_options & ~PUBLIC_COMPILE_EXTRA_OPTIONS) != 0) in pcre2_compile()
9851 (ccontext->extra_options & ~PUBLIC_LITERAL_COMPILE_EXTRA_OPTIONS) != 0)) in pcre2_compile()
9863 if (patlen > ccontext->max_pattern_length) in pcre2_compile()
9875 tables = (ccontext->tables != NULL)? ccontext->tables : PRIV(default_tables); in pcre2_compile()
9884 cb.cx = ccontext; in pcre2_compile()
10046 if ((ccontext->extra_options & PCRE2_EXTRA_ALLOW_SURROGATE_ESCAPES) != 0) in pcre2_compile()
10065 if (bsr == 0) bsr = ccontext->bsr_convention; in pcre2_compile()
10069 if (newline == 0) newline = ccontext->newline_convention; in pcre2_compile()
10136 if ((ccontext->extra_options & in pcre2_compile()
10145 uint32_t *heap_parsed_pattern = ccontext->memctl.malloc( in pcre2_compile()
10146 (parsed_size_needed + 1) * sizeof(uint32_t), ccontext->memctl.memory_data); in pcre2_compile()
10172 cb.groupinfo = ccontext->memctl.malloc( in pcre2_compile()
10173 (cb.bracount + 1)*sizeof(uint32_t), ccontext->memctl.memory_data); in pcre2_compile()
10252 ccontext->memctl.malloc(re_blocksize, ccontext->memctl.memory_data); in pcre2_compile()
10266 re->memctl = ccontext->memctl; in pcre2_compile()
10274 re->extra_options = ccontext->extra_options; in pcre2_compile()
10599 ccontext->memctl.free(cb.parsed_pattern, ccontext->memctl.memory_data); in pcre2_compile()
10601 ccontext->memctl.free((void *)cb.named_groups, ccontext->memctl.memory_data); in pcre2_compile()
10603 ccontext->memctl.free((void *)cb.groupinfo, ccontext->memctl.memory_data); in pcre2_compile()