Lines Matching refs:fd_in
133 static int start_dcc_subprocess(int *fd_in, int *fd_out) { in start_dcc_subprocess() argument
142 *fd_in = inpipe[0]; in start_dcc_subprocess()
188 int fd_in, fd_out; in lkboot_txn() local
223 fd_in = STDIN_FILENO; in lkboot_txn()
227 if (start_dcc_subprocess(&fd_in, &fd_out) < 0) { in lkboot_txn()
237 while ((fd_in = tcp_connect(addr, 1023)) < 0) { in lkboot_txn()
244 fd_out = fd_in; in lkboot_txn()
254 if (readx(fd_in, &hdr, sizeof(hdr))) goto iofail; in lkboot_txn()
267 if (readx(fd_in, cmd, len)) { in lkboot_txn()
277 if (readx(fd_in, tmp, len)) goto iofail; in lkboot_txn()
298 close(fd_in); in lkboot_txn()
299 if (fd_out != fd_in) in lkboot_txn()