| /openbmc/qemu/target/hexagon/ |
| H A D | gen_semantics.c | 29 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 D | gen_dectree_import.c | 135 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 D | generate-tar | 96 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 D | generate-ubi | 27 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 D | qemu-keymap.c | 31 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 D | qemu-edid.c | 43 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 D | generate-psu-tar | 13 --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 D | download_manager.py | 40 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 D | gen-bios-tar | 92 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 D | suite.cpp | 59 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 D | fdio.cpp | 45 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 D | mutex.cpp | 51 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 D | 0003-rdoc-build-reproducible-documentation.patch | 21 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 D | cve-json-to-text.py | 13 outfile = "out.txt" variable 43 global infile, outfile 56 outfile = arg 142 process_data(outfile, data)
|
| /openbmc/openbmc/poky/bitbake/lib/bb/ |
| H A D | progress.py | 43 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 D | microcode-tool.py | 174 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 D | microcode-tool | 174 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 D | dbus-unit-test.py | 34 ) as outfile: 55 outfile.write(line) 57 outfile.close()
|
| /openbmc/ibm-logging/ |
| H A D | create_error_reports.py | 133 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 D | condense_policy.py | 122 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 D | sort-pmuevents.py | 24 outfile = sys.argv[2] variable 30 if os.path.exists(outfile): 88 outf = open( outfile, 'w' )
|
| /openbmc/u-boot/tools/patman/ |
| H A D | command.py | 42 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 D | create.py | 649 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 D | 0001-genisoimage-Add-missing-extern-definition.patch | 22 -char *outfile; 23 +extern char *outfile;
|
| /openbmc/openbmc-tools/tof-voters/libvoters/subcmd/ |
| H A D | report.py | 54 with open(os.path.join(args.dir, "report.json"), "w") as outfile: 55 outfile.write(json.dumps(results, indent=4))
|