Searched refs:ccontext (Results 1 – 7 of 7) sorted by relevance
/external/pcre/dist2/src/ |
D | pcre2_context.c | 150 pcre2_compile_context *ccontext = PRIV(memctl_malloc)( in pcre2_compile_context_create() local 152 if (ccontext == NULL) return NULL; in pcre2_compile_context_create() 153 *ccontext = PRIV(default_compile_context); in pcre2_compile_context_create() 155 *((pcre2_memctl *)ccontext) = *((pcre2_memctl *)gcontext); in pcre2_compile_context_create() 156 return ccontext; in pcre2_compile_context_create() 212 pcre2_convert_context *ccontext = PRIV(memctl_malloc)( in pcre2_convert_context_create() local 214 if (ccontext == NULL) return NULL; in pcre2_convert_context_create() 215 *ccontext = PRIV(default_convert_context); in pcre2_convert_context_create() 217 *((pcre2_memctl *)ccontext) = *((pcre2_memctl *)gcontext); in pcre2_convert_context_create() 218 return ccontext; in pcre2_convert_context_create() [all …]
|
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()
|
D | pcre2_compile.c | 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() [all …]
|
/external/selinux/libselinux/src/ |
D | setfilecon.c | 15 char * ccontext = NULL; in setfilecon_raw() local 17 if ((getfilecon_raw(path, &ccontext) >= 0) && in setfilecon_raw() 18 (strcmp(context,ccontext) == 0)) { in setfilecon_raw() 23 freecon(ccontext); in setfilecon_raw()
|
D | fsetfilecon.c | 15 char * ccontext = NULL; in fsetfilecon_raw() local 17 if ((fgetfilecon_raw(fd, &ccontext) >= 0) && in fsetfilecon_raw() 18 (strcmp(context,ccontext) == 0)) { in fsetfilecon_raw() 23 freecon(ccontext); in fsetfilecon_raw()
|
D | lsetfilecon.c | 15 char * ccontext = NULL; in lsetfilecon_raw() local 17 if ((lgetfilecon_raw(path, &ccontext) >= 0) && in lsetfilecon_raw() 18 (strcmp(context,ccontext) == 0)) { in lsetfilecon_raw() 23 freecon(ccontext); in lsetfilecon_raw()
|
/external/pcre/dist2/doc/ |
D | pcre2.txt | 203 pcre2_compile_context *ccontext); 256 pcre2_compile_context *ccontext); 258 void pcre2_compile_context_free(pcre2_compile_context *ccontext); 260 int pcre2_set_bsr(pcre2_compile_context *ccontext, 263 int pcre2_set_character_tables(pcre2_compile_context *ccontext, 266 int pcre2_set_compile_extra_options(pcre2_compile_context *ccontext, 269 int pcre2_set_max_pattern_length(pcre2_compile_context *ccontext, 272 int pcre2_set_newline(pcre2_compile_context *ccontext, 275 int pcre2_set_parens_nest_limit(pcre2_compile_context *ccontext, 278 int pcre2_set_compile_recursion_guard(pcre2_compile_context *ccontext, [all …]
|