HomeSort by relevance Sort by last modified time
    Searched refs:out_file (Results 1 - 25 of 59) sorted by null

1 2 3

  /cts/tests/tests/security/tools/
format_cert.sh 30 out_file="$2"
47 if [ "$out_file" == "" ]; then
48 out_file="$subject_hash.0"
49 echo "Auto-generated output file name: $out_file"
53 "$OPENSSL" x509 -in "$in_file" -inform $in_form -outform pem > "$out_file" && \
55 >> "$out_file"
  /external/chromium_org/chrome/installer/mini_installer/
pe_resource.cc 36 HANDLE out_file = ::CreateFile(full_path, GENERIC_WRITE, 0, NULL, local
38 if (INVALID_HANDLE_VALUE == out_file) {
42 if (!::WriteFile(out_file, data, static_cast<DWORD>(resource_size),
44 ::CloseHandle(out_file);
47 return ::CloseHandle(out_file) ? true : false;
  /external/chromium_org/third_party/jstemplate/
compile.py 36 out_file = file(out, 'w')
37 out_file.write(output_wrapper % response.read())
38 out_file.close()
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/tools/
rtp_analyze.cc 74 FILE* out_file; local
76 out_file = fopen(argv[2], "wt");
77 if (!out_file) {
83 out_file = stdout;
87 fprintf(out_file, "SeqNo TimeStamp SendTime Size PT M SSRC");
89 fprintf(out_file, " AuLvl (V)");
91 fprintf(out_file, "\n");
102 fprintf(out_file,
113 fprintf(out_file,
118 fprintf(out_file, "\n")
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/
build_updater.py 68 for in_file, out_file in UPDATER_FILES:
71 out_file = os.path.join(out_dir, out_file)
72 result.append((in_file, out_file))
90 for in_file_glob, out_file in files:
91 if out_file.endswith('/'):
94 os.path.join(out_file, os.path.basename(in_file))))
96 result.append((in_file_glob, out_file))
106 for in_file, out_file in files:
107 buildbot_common.MakeDir(os.path.dirname(out_file))
    [all...]
  /external/chromium_org/chrome/installer/mac/
make_signers.sh 54 out_file="${packaging_dir}/$(basename "${in_file:0:${#in_file} - 3}")"
59 > "${out_file}"
61 if [[ "${out_file: -3}" = ".sh" ]]; then
62 chmod +x "${out_file}"
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/
RTPcat.cc 33 FILE* out_file = fopen(argv[argc - 1], "wb"); // Last parameter is out file. local
34 if (!out_file) {
44 EXPECT_GT(fputs(firstline, out_file), 0);
48 out_file));
68 packet.writeToFile(out_file);
73 fclose(out_file);
RTPchange.cc 41 FILE* out_file = fopen(argv[3], "wb"); local
42 if (!out_file) {
77 fputs(first_line, out_file);
85 if (fwrite(first_line, 1, kRtpDumpHeaderSize, out_file)
121 if ((*it)->writeToFile(out_file) < 0) {
130 fclose(out_file);
audio_classifier_test.cc 65 FILE* out_file = fopen(output_filename.c_str(), "wb"); local
66 if (!out_file) {
77 if (!fwrite(&is_music, sizeof(is_music), 1, out_file)) {
87 if (!fwrite(&music_prob, sizeof(music_prob), 1, out_file)) {
103 fclose(out_file);
RTPjitter.cc 106 FILE* out_file=fopen(argv[3],"wb"); local
107 CHECK_NOT_NULL(out_file);
140 EXPECT_GT(fputs(firstline, out_file), 0);
144 out_file));
198 out_file) !=
214 fclose(out_file);
  /external/e2fsprogs/debugfs/
logdump.c 79 FILE *out_file; local
170 out_file = stdout;
173 out_file = fopen(out_fn, "w");
174 if (!out_file) {
248 fprintf(out_file, "Using external journal found at %s\n",
255 dump_journal(argv[0], out_file, &journal_source);
263 if (out_file && (out_file != stdout))
264 fclose(out_file);
332 static void dump_journal(char *cmdname, FILE *out_file,
    [all...]
  /external/chromium_org/third_party/libvpx/
lint_config.sh 32 out_file=$OPTARG
105 if [ -n "$out_file" ]; then
106 echo "$combined_config" | sort | uniq > $out_file
  /external/chromium_org/third_party/libvpx/source/libvpx/build/make/
version.sh 23 out_file=${2}
71 if [ -n "$out_file" ]; then
72 diff $$.tmp ${out_file} >/dev/null 2>&1 || cat $$.tmp > ${out_file}
  /external/libvpx/libvpx/build/make/
version.sh 23 out_file=${2}
71 if [ -n "$out_file" ]; then
72 diff $$.tmp ${out_file} >/dev/null 2>&1 || cat $$.tmp > ${out_file}
  /cts/tools/selinux/
SELinuxNeverallowTestGen.py 50 with open(output_file, 'w') as out_file:
51 out_file.write(src_header)
52 out_file.write(src_body)
53 out_file.write(src_footer)
  /external/chromium_org/build/
escape_unicode.py 45 with codecs.open(out_filename, 'w', 'ascii') as out_file:
48 out_file.write(repr(char.encode('utf8'))[1:-1])
50 out_file.write('""')
52 out_file.write(char.encode('ascii'))
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/tools/
generate_test_messages.py 40 with open(options.output_file, 'w') as out_file:
41 out_file.write(_JS_TEMPLATE % {'in_file': in_file_name, 'json': json})
  /external/chromium_org/tools/site_compare/
site_compare.py 124 out_file = open(os.path.join(out_path, "log.txt"), "w")
127 out_file.write(description_string)
134 out_file.write("%s: " % filename)
137 out_file.write("Does not exist in target directory\n")
152 out_file.write("OK\n")
155 out_file.write("%s\n" % (ret[0]))
158 out_file.close()
  /build/tools/releasetools/
build_image.py 151 def MakeVerityEnabledImage(out_file, prop_dict):
155 out_file: the location to write the verifiable image at
174 if not BuildVerityTree(out_file, verity_image_path, prop_dict):
192 if not BuildVerifiedImage(out_file,
201 def BuildImage(in_dir, prop_dict, out_file,
205 """Build an image to out_file from in_dir with property prop_dict.
210 out_file: path of the output image file.
240 build_command.extend([in_dir, out_file, fs_type,
257 build_command.extend([out_file, prop_dict["partition_size"]])
263 build_command.append(out_file)
    [all...]
  /cts/tools/vm-tests-tf/src/util/build/
DasmBuildStep.java 104 File out_file = null; local
107 out_file = new File(class_name + ".dex");
109 out_file = new File(dest_dir, class_name + ".dex");
127 outp = new FileOutputStream(out_file);
133 " while writing " + out_file.getPath());
137 out_file.delete();
  /external/chromium_org/chrome/app/
client_util.h 57 HMODULE Load(base::string16* version, base::string16* out_file);
  /external/chromium_org/chrome/tools/convert_dict/
convert_dict.cc 139 FILE* out_file = base::OpenFile(out_path, "wb"); local
140 if (!out_file) {
144 size_t written = fwrite(&serialized[0], 1, serialized.size(), out_file);
146 base::CloseFile(out_file);
  /external/chromium_org/build/go/
go.py 33 out_file = os.path.abspath(args.output_file)
52 shutil.move(out_files[0], out_file)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
export-w3c-performance-wg-tests 75 with open(os.path.join(destination_directory, root, filename), 'w') as out_file:
79 out_file.write(line)
import-w3c-performance-wg-tests 81 with open(os.path.join(destination_directory, root, filename), 'w') as out_file:
87 out_file.write(line)

Completed in 745 milliseconds

1 2 3