| /xsrc/external/mit/xedit/dist/lisp/ |
| stream.c | 653 int ifd[2]; local 720 pipe(ifd); 728 dup2(ifd[1], 1); 730 close(ifd[0]); 731 close(ifd[1]); 742 program->input = LispFdopen(ifd[0], FILE_READ | FILE_UNBUFFERED); 743 close(ifd[1]);
|
| /xsrc/external/mit/libxcb/dist/src/ |
| xcbint.h | 98 int ifd; member in struct:_xcb_fd
|
| xcb_in.c | 119 int *ifds = &c->in.in_fd.fd[c->in.in_fd.ifd]; 120 int infd = c->in.in_fd.nfd - c->in.in_fd.ifd; 125 c->in.in_fd.ifd += nfd; 1046 c->in.in_fd.nfd -= c->in.in_fd.ifd; 1048 &c->in.in_fd.fd[c->in.in_fd.ifd], 1050 c->in.in_fd.ifd = 0;
|
| /xsrc/external/mit/xedit/dist/ |
| ispell.c | 102 int pid, ifd[2], ofd[2]; member in struct:_ispell 539 if ((len = read(ispell.ifd[0], &ispell.buf[ispell.buflen], 1147 len = read(ispell.ifd[0], buf, sizeof(buf)); 1327 pipe(ispell.ifd); 1333 dup2(ispell.ifd[1], 1); 1336 close(ispell.ifd[0]); 1337 close(ispell.ifd[1]); 1350 ispell.ifd[0], (XtPointer)XtInputReadMask, 1352 fcntl(ispell.ifd[0], F_SETFL, O_NONBLOCK); 1416 close(ispell.ifd[0]) [all...] |
| /xsrc/external/mit/luit/dist/ |
| luit.c | 436 convert(int ifd, int ofd) 448 i = (int) read(ifd, buf, (size_t) BUFFER_SIZE);
|