Searched refs:ccontext (Results 1 – 3 of 3) sorted by relevance
/PHP-8.0/ext/pcre/pcre2lib/ |
H A D | pcre2_context.c | 156 return ccontext; in pcre2_compile_context_create() 220 return ccontext; in pcre2_convert_context_create() 245 ccontext->memctl.memory_data); in pcre2_compile_context_copy() 270 ccontext->memctl.memory_data); in pcre2_convert_context_copy() 292 if (ccontext != NULL) in pcre2_compile_context_free() 293 ccontext->memctl.free(ccontext, ccontext->memctl.memory_data); in pcre2_compile_context_free() 308 if (ccontext != NULL) in pcre2_convert_context_free() 309 ccontext->memctl.free(ccontext, ccontext->memctl.memory_data); in pcre2_convert_context_free() 328 ccontext->tables = tables; in pcre2_set_character_tables() 391 ccontext->stack_guard = guard; in pcre2_set_compile_recursion_guard() [all …]
|
H A D | pcre2_convert.c | 127 PCRE2_SIZE *bufflenptr, BOOL dummyrun, pcre2_convert_context *ccontext) in convert_posix() argument 143 (void)ccontext; /* Not currently used */ in convert_posix() 789 PCRE2_SIZE *bufflenptr, BOOL dummyrun, pcre2_convert_context *ccontext) in convert_glob() argument 794 PCRE2_UCHAR separator = ccontext->glob_separator; in convert_glob() 795 PCRE2_UCHAR escape = ccontext->glob_escape; in convert_glob() 1059 pcre2_convert_context *ccontext) in pcre2_pattern_convert() argument 1079 if (ccontext == NULL) ccontext = in pcre2_pattern_convert() 1124 use_buffer, use_length, bufflenptr, dummyrun, ccontext); in pcre2_pattern_convert() 1130 bufflenptr, dummyrun, ccontext); in pcre2_pattern_convert() 1147 (*bufflenptr + 1)*PCRE2_CODE_UNIT_WIDTH, (pcre2_memctl *)ccontext); in pcre2_pattern_convert()
|
H A D | pcre2_compile.c | 9707 if (ccontext == NULL) 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() 10010 if ((ccontext->extra_options & in pcre2_compile() 10046 cb.groupinfo = ccontext->memctl.malloc( in pcre2_compile() 10125 ccontext->memctl.malloc(re_blocksize, ccontext->memctl.memory_data); in pcre2_compile() 10139 re->memctl = ccontext->memctl; 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() [all …]
|
Completed in 54 milliseconds