Lines Matching defs:outfp
402 FILE *outfp = NULL;
657 outfp = stdout;
660 outfp = fopen(outfile, "w");
661 if (!outfp) {
673 pf.fp = outfp;
684 ret = sepol_kernel_policydb_to_conf(outfp, policydbp);
693 ret = sepol_kernel_policydb_to_cil(outfp, policydbp);
695 ret = sepol_module_policydb_to_cil(outfp, policydbp, 1);
703 if (outfp != stdout) {
704 if(fclose(outfp)) {