| /src/external/bsd/nsd/dist/ |
| popen3.c | 32 int fdout[] = { -1, -1 }; local 46 if(fdoutptr != NULL && pipe(fdout) == -1) { 73 if(dup2(fdout[1], 1) == -1) { 76 close_pipe(fdout); 133 close(fdout[1]); 134 *fdoutptr = fdout[0]; 147 close_pipe(fdout);
|
| verify.c | 419 int fdin, fderr, fdout, flags; local 426 fdin = fdout = fderr = -1; 469 command, fdin == -2 ? &fdin : NULL, &fdout, &fderr); 482 flags = fcntl(fdout, F_GETFL, 0); 483 if(fcntl(fdout, F_SETFL, flags | O_NONBLOCK) == -1) { 522 verifier->output_stream.fd = fdout; 611 close(fdout);
|
| /src/sys/arch/ews4800mips/stand/common/ |
| coffhdrfix.c | 83 int fd, fdout, fileoff, i; local 118 if ((fdout = open(argp[2], O_CREAT | O_TRUNC | O_RDWR, 0644)) < 0) { 124 write(fdout, buf, fileoff); 127 write(fdout, buf, i); 129 close(fdout);
|
| /src/sys/arch/acorn32/mainbus/ |
| fdreg.h | 43 #define fdout 2 /* Digital Output Register (W) */ macro
|
| /src/sys/arch/atari/dev/ |
| hdfdreg.h | 56 #define fdout 0x40 /* Digital Output Register (W) */ macro
|
| /src/sys/arch/x68k/dev/ |
| fdreg.h | 44 #define fdout 2 /* Digital Output Register (W) */ macro
|
| /src/sys/dev/isa/ |
| fdreg.h | 42 #define fdout 0 /* Digital Output Register (W) */ macro
|
| /src/external/gpl2/xcvs/dist/src/ |
| filesubr.c | 44 int fdin, fdout; local 78 if ((fdout = creat (to, (int) sb.st_mode & 07777)) < 0) 99 if (write(fdout, buf, n) != n) { 107 if (close (fdout) < 0)
|
| /src/external/bsd/openldap/dist/libraries/liblmdb/ |
| mplay.c | 78 int fdout, fdin; member in struct:pidpair 480 int fdout[2], fdin[2]; local 484 pipe(fdout); 490 dup2(fdout[0], 0); 498 pids[npids].fdout = fdout[1]; 528 write(pp->fdout, "exit\n", sizeof("exit")); 544 close(pids[i].fdout); 579 write(pp->fdout, ptr, len); /* send command and wait for ack */
|
| /src/crypto/external/bsd/openssh/dist/ |
| session.c | 493 * handle the case that fdin and fdout are the same. 510 int fdout, ptyfd, ttyfd, ptymaster; local 525 if ((fdout = dup(ptyfd)) == -1) { 536 close(fdout); 544 close(fdout); 552 close(fdout); 591 session_set_fds(ssh, s, ptyfd, fdout, -1, 1, 1); 2027 int fdin, int fdout, int fderr, int ignore_fderr, int is_tty) 2037 fdout, fdin, fderr, 2042 fdout, fdin, fderr [all...] |