Home | History | Annotate | Download | only in pppd

Lines Matching refs:ofd

926 start_charshunt(ifd, ofd)
927 int ifd, ofd;
931 cpid = safe_fork(ifd, ofd, (log_to_fd >= 0? log_to_fd: 2));
975 * (We assume ofd >= ifd which is true the way this gets called. :-).
978 charshunt(ifd, ofd, record_file)
979 int ifd, ofd;
1041 if (ifd >= FD_SETSIZE || ofd >= FD_SETSIZE || pty_master >= FD_SETSIZE)
1043 ifd, ofd, pty_master);
1063 if (ofd != ifd) {
1064 flags = fcntl(ofd, F_GETFL);
1066 || fcntl(ofd, F_SETFL, flags | O_NONBLOCK) == -1)
1083 nfds = (ofd > pty_master? ofd: pty_master) + 1;
1111 FD_SET(ofd, &writey);
1173 close(ofd);
1178 FD_SET(ofd, &writey);
1185 if (FD_ISSET(ofd, &writey)) {
1189 n = write(ofd, obufp, n);