Lines Matching refs:binary
4 * Redistribution and use in source and binary forms, with or without
10 * 2. Redistributions in binary form must reproduce the above copyright notice,
49 printf(" -o, --output=<file> write binary policy to <file>\n");
58 printf(" -c, --policyvers=<version> build a binary policy with a given <version>\n");
64 printf(" -D, --disable-dontaudit do not add dontaudit rules to the binary policy\n");
77 FILE *binary = NULL;
274 binary = fopen(output, "w");
275 if (binary == NULL) {
276 fprintf(stderr, "Failure opening binary file for writing\n");
287 sepol_policy_file_set_fp(pf, binary);
291 fprintf(stderr, "Failed to write binary policy: %d\n", rc);
295 fclose(binary);
296 binary = NULL;
326 if (binary != NULL) {
327 fclose(binary);