Lines Matching refs:events
134 /* WinSock select() can't handle zero events. See the comment below. */
170 * Wait for read or write events on a set of file descriptors. It uses poll()
212 pfd[num].events = POLLRDNORM|POLLIN|POLLRDBAND|POLLPRI;
218 pfd[num].events = POLLRDNORM|POLLIN|POLLRDBAND|POLLPRI;
224 pfd[num].events = POLLWRNORM|POLLOUT|POLLPRI;
346 if(ufds[i].events & (POLLIN|POLLOUT|POLLPRI|
350 if(ufds[i].events & (POLLRDNORM|POLLIN))
352 if(ufds[i].events & (POLLWRNORM|POLLOUT))
354 if(ufds[i].events & (POLLRDBAND|POLLPRI))
379 if(ufds[i].events & POLLRDNORM)
381 if(ufds[i].events & POLLIN)
385 if(ufds[i].events & POLLWRNORM)
387 if(ufds[i].events & POLLOUT)
391 if(ufds[i].events & POLLRDBAND)
393 if(ufds[i].events & POLLPRI)