Lines Matching refs:file_contexts
52 printf(" (default: file_contexts)\n");
86 FILE *file_contexts;
374 file_contexts = fopen("file_contexts", "w+");
376 file_contexts = fopen(filecontexts, "w+");
379 if (file_contexts == NULL) {
380 fprintf(stderr, "Failed to open file_contexts file\n");
385 if (fwrite(fc_buf, sizeof(char), fc_size, file_contexts) != fc_size) {
386 fprintf(stderr, "Failed to write file_contexts file\n");
391 fclose(file_contexts);
392 file_contexts = NULL;