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");
85 FILE *binary = NULL;
343 binary = fopen(output, "w");
344 if (binary == NULL) {
345 fprintf(stderr, "Failure opening binary file for writing\n");
356 sepol_policy_file_set_fp(pf, binary);
360 fprintf(stderr, "Failed to write binary policy: %d\n", rc);
364 fclose(binary);
365 binary = NULL;
397 if (binary != NULL) {
398 fclose(binary);