Searched refs:infd (Results 1 – 4 of 4) sorted by relevance
/u-boot/tools/ |
A D | mxsboot.c | 426 size = lseek(infd, 0, SEEK_END); in mx28_nand_write_firmware() 427 lseek(infd, 0, SEEK_SET); in mx28_nand_write_firmware() 432 ret = read(infd, buf + offset1, size); in mx28_nand_write_firmware() 540 fsize = lseek(infd, 0, SEEK_END); in mx28_create_sd_image() 541 lseek(infd, 0, SEEK_SET); in mx28_create_sd_image() 639 int infd, outfd; in main() local 650 infd = open(argv[offset + 1], O_RDONLY); in main() 651 if (infd < 0) { in main() 666 ret = mx28_create_sd_image(infd, outfd); in main() 668 ret = mx28_create_nand_image(infd, outfd); in main() [all …]
|
A D | sunxi_egon.c | 72 static void egon_set_header(void *buf, struct stat *sbuf, int infd, in egon_set_header() argument
|
/u-boot/tools/patman/ |
A D | test_checkpatch.py | 79 infd = os.fdopen(inhandle, 'w') 80 infd.write(self.get_patch_text()) 81 infd.close() 142 infd = os.fdopen(inhandle, 'w', encoding='utf-8') 143 infd.write(data) 144 infd.close() 289 infd = os.fdopen(inhandle, 'w') 291 infd.write(data) 292 infd.close()
|
A D | patchstream.py | 117 infd = io.StringIO(text) 121 pstrm.process_stream(infd, outfd) 601 def process_stream(self, infd, outfd): argument 618 line = infd.readline() 769 infd = open(fname, 'r', encoding='utf-8') 772 pst.process_stream(infd, outfd) 773 infd.close()
|
Completed in 6 milliseconds