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");
81 FILE *binary = NULL;
310 binary = fopen(output, "w");
311 if (binary == NULL) {
312 fprintf(stderr, "Failure opening binary file for writing\n");
323 sepol_policy_file_set_fp(pf, binary);
327 fprintf(stderr, "Failed to write binary policy: %d\n", rc);
331 fclose(binary);
332 binary = NULL;
362 if (binary != NULL) {
363 fclose(binary);