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

  /external/selinux/libsepol/include/sepol/policydb/
module.h 39 char *file_contexts; member in struct:sepol_module_package
  /system/sepolicy/
Android.mk 197 LOCAL_MODULE := file_contexts.bin
204 # The file_contexts.bin is built in the following way:
205 # 1. Collect all file_contexts files in THIS repository and process them with
206 # m4 into a tmp file called file_contexts.local.tmp.
207 # 2. Collect all device specific file_contexts files and process them with m4
208 # into a tmp file called file_contexts.device.tmp.
210 # file_contexts.device.tmp and output to file_contexts.device.sorted.tmp.
211 # 4. Concatenate file_contexts.local.tmp and file_contexts.device.tmp int
    [all...]
  /external/selinux/policycoreutils/semodule_package/
semodule_package.c 94 char *module = NULL, *file_contexts = NULL, *seusers = local
129 if (file_contexts) {
134 file_contexts = strdup(optarg);
135 if (!file_contexts)
188 if (file_contexts) {
189 if (file_to_data(file_contexts, &fcdata, &fclen))
253 free(file_contexts);
  /external/selinux/secilc/
secilc.c 52 printf(" (default: file_contexts)\n");
78 FILE *file_contexts; local
305 file_contexts = fopen("file_contexts", "w+");
307 file_contexts = fopen(filecontexts, "w+");
310 if (file_contexts == NULL) {
311 fprintf(stderr, "Failed to open file_contexts file\n");
315 if (fwrite(fc_buf, sizeof(char), fc_size, file_contexts) != fc_size) {
316 fprintf(stderr, "Failed to write file_contexts file\n");
320 fclose(file_contexts);
    [all...]

Completed in 279 milliseconds