Searched refs:ccontext (Results 1 - 5 of 5) sorted by relevance

/external/pcre/dist2/src/
H A Dpcre2_context.c149 pcre2_compile_context *ccontext = PRIV(memctl_malloc)( local
151 if (ccontext == NULL) return NULL;
152 *ccontext = PRIV(default_compile_context);
154 *((pcre2_memctl *)ccontext) = *((pcre2_memctl *)gcontext);
155 return ccontext;
210 pcre2_compile_context_copy(pcre2_compile_context *ccontext) argument
213 ccontext->memctl.malloc(sizeof(pcre2_real_compile_context),
214 ccontext->memctl.memory_data);
216 memcpy(new, ccontext, sizeof(pcre2_real_compile_context));
248 pcre2_compile_context_free(pcre2_compile_context *ccontext) argument
277 pcre2_set_character_tables(pcre2_compile_context *ccontext, const unsigned char *tables) argument
285 pcre2_set_bsr(pcre2_compile_context *ccontext, uint32_t value) argument
300 pcre2_set_max_pattern_length(pcre2_compile_context *ccontext, PCRE2_SIZE length) argument
307 pcre2_set_newline(pcre2_compile_context *ccontext, uint32_t newline) argument
325 pcre2_set_parens_nest_limit(pcre2_compile_context *ccontext, uint32_t limit) argument
332 pcre2_set_compile_recursion_guard(pcre2_compile_context *ccontext, int (*guard)(uint32_t, void *), void *user_data) argument
[all...]
H A Dpcre2_compile.c8305 ccontext points to a compile context or is NULL
8313 int *errorptr, PCRE2_SIZE *erroroffset, pcre2_compile_context *ccontext)
8380 if (ccontext == NULL)
8381 ccontext = (pcre2_compile_context *)(&PRIV(default_compile_context));
8391 if (patlen > ccontext->max_pattern_length)
8399 if (patlen > ccontext->max_pattern_length)
8408 copied_pattern = ccontext->memctl.malloc(CU2BYTES(patlen + 1),
8409 ccontext->memctl.memory_data);
8423 tables = (ccontext->tables != NULL)? ccontext
8312 pcre2_compile(PCRE2_SPTR pattern, PCRE2_SIZE patlen, uint32_t options, int *errorptr, PCRE2_SIZE *erroroffset, pcre2_compile_context *ccontext) argument
[all...]
/external/selinux/libselinux/src/
H A Dfsetfilecon.c15 char * ccontext = NULL; local
17 if ((fgetfilecon_raw(fd, &ccontext) >= 0) &&
18 (strcmp(context,ccontext) == 0)) {
23 freecon(ccontext);
H A Dlsetfilecon.c15 char * ccontext = NULL; local
17 if ((lgetfilecon_raw(path, &ccontext) >= 0) &&
18 (strcmp(context,ccontext) == 0)) {
23 freecon(ccontext);
H A Dsetfilecon.c15 char * ccontext = NULL; local
17 if ((getfilecon_raw(path, &ccontext) >= 0) &&
18 (strcmp(context,ccontext) == 0)) {
23 freecon(ccontext);

Completed in 192 milliseconds