Searched refs:wset (Results 1 - 10 of 10) sorted by relevance

/freebsd-current/bin/stty/
H A Dstty.h38 int wset; /* need window set */ member in struct:info
H A Dstty.c106 for (i.set = i.wset = 0; *argv; ++argv) {
140 if (i.wset && ioctl(i.fd, TIOCSWINSZ, &i.win) < 0)
H A Dkey.c151 ip->wset = 1;
245 ip->wset = 1;
/freebsd-current/contrib/capsicum-test/
H A Dselect.cc58 fd_set wset; local
61 InitFDSet(&wset, cap_fd, kCapCount);
63 int ret = select(maxfd+1, &rset, &wset, NULL, &tv);
70 InitFDSet(&wset, cap_fd, kCapCount);
71 AddFDToSet(&wset, fd, maxfd);
72 AddFDToSet(&wset, cap_rw, maxfd);
73 ret = select(maxfd+1, &rset, &wset, NULL, &tv);
83 InitFDSet(&wset, cap_fd, kCapCount);
85 ret = pselect(maxfd+1, &rset, &wset, NULL, &ts, NULL);
91 InitFDSet(&wset, cap_f
[all...]
H A Dcapability-fd.cc601 fd_set wset; local
602 FD_ZERO(&wset);
603 FD_SET(cap_fd, &wset);
604 ret = select(cap_fd+1, &rset, &wset, NULL, &tv);
/freebsd-current/tools/test/stress2/misc/
H A Dsendfile2.sh85 fd_set wset;
117 FD_ZERO(&wset);
118 FD_SET(s, &wset);
119 n = select(f+1, NULL, &wset, NULL, NULL);
/freebsd-current/contrib/libbegemot/
H A Drpoll.c177 static fd_set rset, wset, xset; /* file descriptor sets for select() */ variable
345 FD_ZERO(&wset);
355 FD_SET(p->fd, &wset);
544 nwset = wset;
/freebsd-current/contrib/tnftp/src/
H A Dutil.c1485 fd_set rset, wset, xset;
1493 FD_ZERO(&wset);
1506 FD_SET(fds[i].fd, &wset);
1522 rv = select(max + 1, &rset, &wset, &xset, ptv);
1529 if (FD_ISSET(fds[i].fd, &wset))
/freebsd-current/contrib/unbound/smallapp/
H A Dunbound-control.c671 fd_set rset, wset, eset; local
675 FD_ZERO(&wset);
676 FD_SET(FD_SET_T fd, &wset);
681 if(select(fd+1, &rset, &wset, &eset, &tv) == -1) {
684 if(!FD_ISSET(fd, &rset) && !FD_ISSET(fd, &wset) &&
/freebsd-current/contrib/ntp/ntpd/
H A Drefclock_gpsdjson.c2002 fd_set wset; local
2005 FD_ZERO(&wset);
2006 FD_SET(up->fdt, &wset);
2007 rc = select(up->fdt+1, NULL, &wset, NULL, &tout);
2008 if (0 == rc || !(FD_ISSET(up->fdt, &wset)))

Completed in 115 milliseconds