Home
last modified time | relevance | path

Searched refs:out_file (Results 1 – 4 of 4) sorted by relevance

/cts/tests/tests/security/tools/
Dformat_cert.sh30 out_file="$2"
48 if [ "$out_file" == "" ]; then
49 out_file="$subject_hash.0"
50 echo "Auto-generated output file name: $out_file"
54 "$OPENSSL" x509 -in "$in_file" -inform $in_form -outform pem > "$out_file" && \
56 >> "$out_file"
/cts/tools/vm-tests-tf/src/util/build/
DDasmBuildStep.java104 File out_file = null; in assemble() local
107 out_file = new File(class_name + ".dex"); in assemble()
109 out_file = new File(dest_dir, class_name + ".dex"); in assemble()
127 outp = new FileOutputStream(out_file); in assemble()
133 " while writing " + out_file.getPath()); in assemble()
137 out_file.delete(); in assemble()
/cts/tools/dasm/src/dasm/
DMain.java126 File out_file = null; in assemble() local
130 out_file = new File(class_name + ".dex"); in assemble()
133 out_file = new File(dest_dir, class_name + ".dex"); in assemble()
153 outp = new FileOutputStream(out_file); in assemble()
159 + e.getMessage() + " while writing " + out_file.getPath()); in assemble()
165 out_file.delete(); in assemble()
173 System.out.println("Generated: " + out_file.getPath()); in assemble()
/cts/tools/selinux/
DSELinuxNeverallowTestGen.py97 with open(output_file, 'w') as out_file:
98 out_file.write(src_header)
99 out_file.write(src_body)
100 out_file.write(src_footer)