Searched refs:outfd (Results 1 – 3 of 3) sorted by relevance
/linux-6.6.21/tools/firmware/ |
D | ihex2fw.c | 55 static int output_records(int outfd); 74 int infd, outfd; in main() local 118 outfd = 1; in main() 120 outfd = open(argv[optind+1], O_TRUNC|O_CREAT|O_WRONLY, 0644); in main() 121 if (outfd == -1) { in main() 129 return output_records(outfd); in main() 270 static int output_records(int outfd) in output_records() argument 280 if (write(outfd, &p->addr, writelen) != writelen) in output_records() 286 if (write(outfd, zeroes, 6) != 6) in output_records()
|
/linux-6.6.21/arch/arm/vdso/ |
D | vdsomunge.c | 126 int outfd; in main() local 179 outfd = open(outfile, O_RDWR | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR); in main() 180 if (outfd < 0) in main() 183 if (ftruncate(outfd, stat.st_size) != 0) in main() 187 outfd, 0); in main() 191 close(outfd); in main()
|
/linux-6.6.21/tools/testing/selftests/net/mptcp/ |
D | mptcp_connect.c | 616 static int copyfd_io_poll(int infd, int peerfd, int outfd, in copyfd_io_poll() argument 679 do_write(outfd, rbuf, len); in copyfd_io_poll() 743 static int do_recvfile(int infd, int outfd) in do_recvfile() argument 752 if (write(outfd, buf, r) != r) in do_recvfile() 777 static int do_mmap(int infd, int outfd, unsigned int size, in do_mmap() argument 789 ret = spool_buf(outfd, winfo); in do_mmap() 796 ret = write(outfd, inbuf + off, rem); in do_mmap() 837 static int do_sendfile(int infd, int outfd, unsigned int count, in do_sendfile() argument 840 int ret = spool_buf(outfd, winfo); in do_sendfile() 850 r = sendfile(outfd, infd, NULL, count); in do_sendfile() [all …]
|