Home
last modified time | relevance | path

Searched refs:outfile (Results 1 – 25 of 67) sorted by relevance

123

/openbmc/qemu/target/hexagon/
H A Dgen_semantics.c29 FILE *outfile; in main() local
35 outfile = fopen(argv[1], "w"); in main()
36 if (outfile == NULL) { in main()
55 fprintf(outfile, "SEMANTICS( \\\n" \ in main()
61 fprintf(outfile, "ATTRIBUTES( \\\n" \ in main()
69 fprintf(outfile, "SEMANTICS( \\\n" \ in main()
75 fprintf(outfile, "ATTRIBUTES( \\\n" \ in main()
97 fprintf(outfile, "MACROATTRIB( \\\n" \ in main()
110 fprintf(outfile, "MACROATTRIB( \\\n" \ in main()
119 fclose(outfile); in main()
H A Dgen_dectree_import.c135 FILE *outfile; in main() local
141 outfile = fopen(argv[1], "w"); in main()
142 if (outfile == NULL) { in main()
147 gen_iset_table(outfile); in main()
148 gen_tags_list(outfile); in main()
150 fclose(outfile); in main()
/openbmc/openpower-pnor-code-mgmt/
H A Dgenerate-tar96 outfile=""
109 outfile="$2"
153 if [[ -z $outfile ]]; then
155 outfile=$(pwd)/${pnorfile##*/}.$image_type.tar
157 outfile=$(pwd)/${pnorfile##*/}.pnor.$image_type.tar
161 outfile=$outfile.gz
164 if [[ $outfile != /* ]]; then
165 outfile=$(pwd)/$outfile
306 tar -cvf "$outfile" $files_to_sign $additional_files
307 echo "SquashFSTarball at ${outfile}"
[all …]
H A Dgenerate-ubi27 outfile="$2"
52 if [[ -z $outfile ]]; then
54 outfile=$(pwd)/${tarball%".squashfs.tar"}.ubi.mtd
56 if [[ $outfile != /* ]]; then
57 outfile=$(pwd)/$outfile
149 mk_nor_image "${outfile}" "${image_size}"
150 dd bs=1k conv=notrunc seek=0 if="${tmpfile}" of="${outfile}"
152 echo "PNOR UBI image at ${outfile}"
/openbmc/qemu/
H A Dqemu-keymap.c31 static FILE *outfile; variable
57 fprintf(outfile, "%s 0x%02x%s\n", name, qcode_to_number(qcode), mod); in print_sym()
67 fprintf(outfile, "\n"); in walk_map()
80 fprintf(outfile, "# evdev %d (0x%x): no evdev -> QKeyCode mapping" in walk_map()
84 fprintf(outfile, "# evdev %d (0x%x), QKeyCode \"%s\", number 0x%x\n", in walk_map()
181 outfile = fopen(optarg, "w"); in main()
182 if (outfile == NULL) { in main()
196 if (outfile == NULL) { in main()
197 outfile = stdout; in main()
200 fprintf(outfile, in main()
[all …]
H A Dqemu-edid.c43 FILE *outfile = NULL; in main() local
56 if (outfile) { in main()
60 outfile = fopen(optarg, "w"); in main()
61 if (outfile == NULL) { in main()
118 if (outfile == NULL) { in main()
119 outfile = stdout; in main()
128 fwrite(blob, size, 1, outfile); in main()
129 fflush(outfile); in main()
/openbmc/phosphor-psu-code-mgmt/tools/
H A Dgenerate-psu-tar13 --outfile <filename> Outfile name
15 The default outfile name is image.tar,and
83 outfile=""
113 --outfile)
114 outfile="$2"
163 if [ -z "${outfile}" ]; then
164 outfile=$(pwd)/$image.tar
166 outfile=$(pwd)/$outfile
225 tar -cvf $outfile $files_to_sign $additional_files
226 echo "PSU FW tarball at $outfile"
/openbmc/skeleton/pydownloadmgr/
H A Ddownload_manager.py40 def DownloadComplete(self, outfile, filename): argument
41 print("Download Complete: " + outfile)
42 return outfile
52 outfile = FLASH_DOWNLOAD_PATH + "/" + os.path.basename(filename)
54 ["tftp", "-l", outfile, "-r", filename, "-g", ip]
57 self.DownloadComplete(outfile, filename)
71 outfile = FLASH_DOWNLOAD_PATH + "/" + os.path.basename(filename)
72 subprocess.call(["tftp", "-l", outfile, "-r", filename, "-g", url])
75 intf.update(outfile)
/openbmc/phosphor-bmc-code-mgmt/bmc/
H A Dgen-bios-tar92 outfile=""
100 outfile="$2"
151 if [[ -z $outfile ]]; then
152 outfile=$(pwd)/obmc-bios.tar.gz
154 if [[ $outfile != /* ]]; then
155 outfile=$(pwd)/$outfile
220 tar -czvf $outfile $files_to_sign $additional_files
221 echo "Bios image tarball is at $outfile"
/openbmc/sdbusplus/test/async/fdio_timed/
H A Dsuite.cpp59 std::ofstream outfile((path / "test_fdio.txt").native()); in writeToFile() local
60 EXPECT_TRUE(outfile.is_open()) in writeToFile()
62 outfile << "Test fdio!" << std::endl; in writeToFile()
63 outfile.close(); in writeToFile()
/openbmc/sdbusplus/test/async/
H A Dfdio.cpp45 std::ofstream outfile((path / "test_fdio.txt").native()); in writeToFile() local
46 EXPECT_TRUE(outfile.is_open()) in writeToFile()
48 outfile << "Test fdio!" << std::endl; in writeToFile()
49 outfile.close(); in writeToFile()
H A Dmutex.cpp51 std::ofstream outfile((path / testMutex).native()); in writeToFile() local
52 EXPECT_TRUE(outfile.is_open()) in writeToFile()
55 outfile << testMutex << std::endl; in writeToFile()
56 outfile.close(); in writeToFile()
/openbmc/openbmc/poky/meta/recipes-devtools/ruby/ruby/
H A D0003-rdoc-build-reproducible-documentation.patch21 debug_msg "Writing gzipped search index to %s" % outfile
23 Zlib::GzipWriter.open(outfile) do |gz|
30 debug_msg "Writing gzipped file to %s" % outfile
32 Zlib::GzipWriter.open(outfile) do |gz|
/openbmc/openbmc/poky/scripts/
H A Dcve-json-to-text.py13 outfile = "out.txt" variable
43 global infile, outfile
56 outfile = arg
142 process_data(outfile, data)
/openbmc/openbmc/poky/bitbake/lib/bb/
H A Dprogress.py43 def __init__(self, d, outfile=None): argument
47 if outfile:
48 self._outfile = outfile
88 def __init__(self, d, outfile=None): argument
90 super().__init__(d, outfile)
115 def __init__(self, d, regex=r'(\d+)%', outfile=None): argument
116 super().__init__(d, outfile)
130 def __init__(self, d, regex, outfile=None): argument
131 super().__init__(d, outfile)
/openbmc/u-boot/tools/
H A Dmicrocode-tool.py174 def CreateFile(date, license_text, mcodes, outfile): argument
231 if outfile == '-':
234 if not outfile:
238 outfile = os.path.join(MICROCODE_DIR, mcode.name + '.dtsi')
240 ', '.join([mcode.name for mcode in mcodes]), outfile)
241 with open(outfile, 'w') as fd:
311 CreateFile(date, license_text, mcode_list, options.outfile)
H A Dmicrocode-tool174 def CreateFile(date, license_text, mcodes, outfile): argument
231 if outfile == '-':
234 if not outfile:
238 outfile = os.path.join(MICROCODE_DIR, mcode.name + '.dtsi')
240 ', '.join([mcode.name for mcode in mcodes]), outfile)
241 with open(outfile, 'w') as fd:
311 CreateFile(date, license_text, mcode_list, options.outfile)
/openbmc/openbmc-build-scripts/scripts/
H A Ddbus-unit-test.py34 ) as outfile:
55 outfile.write(line)
57 outfile.close()
/openbmc/ibm-logging/
H A Dcreate_error_reports.py133 def crosscheck(errors, policy, outfile): argument
141 out = open(outfile, "w")
202 with open(args.error_file, "w") as outfile:
204 errors, outfile, sort_keys=True, indent=2, separators=(",", ":")
H A Dcondense_policy.py122 with open(args.condensed_file, "w") as outfile:
124 condensed, outfile, separators=(",", ":"), indent=indent_value
/openbmc/openbmc/poky/meta/recipes-kernel/perf/perf/
H A Dsort-pmuevents.py24 outfile = sys.argv[2] variable
30 if os.path.exists(outfile):
88 outf = open( outfile, 'w' )
/openbmc/u-boot/tools/patman/
H A Dcommand.py42 def RunPipe(pipe_list, infile=None, outfile=None, argument
84 elif outfile:
85 kwargs['stdout'] = open(outfile, 'wb')
/openbmc/openbmc/poky/scripts/lib/recipetool/
H A Dcreate.py649 if args.outfile and os.path.isdir(args.outfile):
650 outfile = None
651 outdir = args.outfile
653 outfile = args.outfile
655 if outfile and outfile != '-':
656 if os.path.exists(outfile):
657 logger.error('Output file %s already exists' % outfile)
676 if outfile:
677 recipefn = os.path.splitext(os.path.basename(outfile))[0]
797 if not outfile:
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-multimedia/cdrkit/files/
H A D0001-genisoimage-Add-missing-extern-definition.patch22 -char *outfile;
23 +extern char *outfile;
/openbmc/openbmc-tools/tof-voters/libvoters/subcmd/
H A Dreport.py54 with open(os.path.join(args.dir, "report.json"), "w") as outfile:
55 outfile.write(json.dumps(results, indent=4))

123