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

  /external/selinux/libsepol/include/sepol/policydb/
module.h 40 char *file_contexts; member in struct:sepol_module_package
  /external/e2fsprogs/contrib/android/
e2fsdroid.c 22 static char *file_contexts; variable
31 "\t[-C fs_config] [-S file_contexts] [-p product_out]\n"
75 file_contexts = absolute_path(optarg);
143 file_contexts, fs_config_file, fixed_time);
  /external/selinux/semodule-utils/semodule_package/
semodule_package.c 98 char *module = NULL, *file_contexts = NULL, *seusers = local
133 if (file_contexts) {
138 file_contexts = strdup(optarg);
139 if (!file_contexts)
192 if (file_contexts) {
193 if (file_to_data(file_contexts, &fcdata, &fclen))
257 free(file_contexts);
  /external/selinux/secilc/
secilc.c 52 printf(" (default: file_contexts)\n");
81 FILE *file_contexts; local
334 file_contexts = fopen("file_contexts", "w+");
336 file_contexts = fopen(filecontexts, "w+");
339 if (file_contexts == NULL) {
340 fprintf(stderr, "Failed to open file_contexts file\n");
344 if (fwrite(fc_buf, sizeof(char), fc_size, file_contexts) != fc_size) {
345 fprintf(stderr, "Failed to write file_contexts file\n");
349 fclose(file_contexts);
    [all...]
  /system/sepolicy/
Android.mk 610 LOCAL_MODULE := file_contexts.bin
617 # The file_contexts.bin is built in the following way:
618 # 1. Collect all file_contexts files in THIS repository and process them with
619 # m4 into a tmp file called file_contexts.local.tmp.
620 # 2. Collect all device specific file_contexts files and process them with m4
621 # into a tmp file called file_contexts.device.tmp.
623 # file_contexts.device.tmp and output to file_contexts.device.sorted.tmp.
624 # 4. Concatenate file_contexts.local.tmp and file_contexts.device.tmp int
    [all...]

Completed in 183 milliseconds