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/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.py115 with open(output_file, 'w') as out_file:
116 out_file.write(src_header)
117 out_file.write(src_body)
118 out_file.write(src_footer)
/cts/hostsidetests/theme/
Dgenerate_images.py127 out_file = os.path.join(out_path, os.path.join(version, "%s.zip" % density_bucket))
164 print("Pulling images from " + device_serial + " to " + out_file)
165 device.run_adb_command("pull " + OUT_FILE + " " + out_file)