Home | History | Annotate | Download | only in secilc

Lines Matching full:file_contexts

52 	printf("                                 (default: file_contexts)\n");
78 FILE *file_contexts;
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);
321 file_contexts = NULL;