HomeSort by relevance Sort by last modified time
    Searched defs:ccontext (Results 1 - 4 of 4) sorted by null

  /external/selinux/libselinux/src/
fsetfilecon.c 15 char * ccontext = NULL; local
17 if ((fgetfilecon_raw(fd, &ccontext) >= 0) &&
18 (strcmp(context,ccontext) == 0)) {
23 freecon(ccontext);
lsetfilecon.c 15 char * ccontext = NULL; local
17 if ((lgetfilecon_raw(path, &ccontext) >= 0) &&
18 (strcmp(context,ccontext) == 0)) {
23 freecon(ccontext);
setfilecon.c 15 char * ccontext = NULL; local
17 if ((getfilecon_raw(path, &ccontext) >= 0) &&
18 (strcmp(context,ccontext) == 0)) {
23 freecon(ccontext);
  /external/pcre/dist2/src/
pcre2_context.c 150 pcre2_compile_context *ccontext = PRIV(memctl_malloc)( local
152 if (ccontext == NULL) return NULL;
153 *ccontext = PRIV(default_compile_context);
155 *((pcre2_memctl *)ccontext) = *((pcre2_memctl *)gcontext);
156 return ccontext;
212 pcre2_convert_context *ccontext = PRIV(memctl_malloc)( local
214 if (ccontext == NULL) return NULL;
215 *ccontext = PRIV(default_convert_context);
217 *((pcre2_memctl *)ccontext) = *((pcre2_memctl *)gcontext);
218 return ccontext;
    [all...]

Completed in 61 milliseconds