Home | History | Annotate | Download | only in secilc

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");
80 FILE *binary = NULL;
303 binary = fopen(output, "w");
304 if (binary == NULL) {
305 fprintf(stderr, "Failure opening binary file for writing\n");
316 sepol_policy_file_set_fp(pf, binary);
320 fprintf(stderr, "Failed to write binary policy: %d\n", rc);
324 fclose(binary);
325 binary = NULL;
355 if (binary != NULL) {
356 fclose(binary);