Searched refs:POLLIN (Results 51 - 75 of 175) sorted by relevance

1234567

/freebsd-12-stable/contrib/tnftp/
H A Dtnftp.h119 #if !defined(POLLIN)
120 # define POLLIN 0x0001 macro
/freebsd-12-stable/sys/dev/random/
H A Drandomdev.c299 if (events & (POLLIN | POLLRDNORM)) {
301 events &= (POLLIN | POLLRDNORM);
/freebsd-12-stable/sys/netgraph/
H A Dng_device.c487 if (events & (POLLIN | POLLRDNORM) &&
489 revents |= events & (POLLIN | POLLRDNORM);
/freebsd-12-stable/tools/tools/netmap/
H A Dbridge.c344 pollfd[0].events |= POLLIN;
348 pollfd[1].events |= POLLIN;
/freebsd-12-stable/tools/regression/sockets/udp_pingpong/
H A Dudp_pingpong.c252 tcp->pfds[i].events = POLLIN;
297 tcp->pfds[i].events = POLLIN;
449 if(tcp->pfds[fdidx].revents != POLLIN) {
/freebsd-12-stable/lib/libpam/modules/pam_exec/
H A Dpam_exec.c336 pfd[nfds].events = POLLIN|POLLERR|POLLHUP;
342 pfd[nfds].events = POLLIN|POLLERR|POLLHUP;
360 if ((pfd[i].revents & POLLIN) == 0)
/freebsd-12-stable/contrib/netbsd-tests/net/mcast/
H A Dmcast.c246 pfd.events = POLLIN;
322 pfd.events = POLLIN;
/freebsd-12-stable/contrib/ofed/librdmacm/examples/
H A Driostream.c211 fds.events = POLLIN;
416 fds.events = POLLIN;
H A Dudpong.c204 fds.events = POLLIN;
342 fds.events = POLLIN;
/freebsd-12-stable/contrib/apr/poll/unix/
H A Dpoll.c37 rv |= POLLIN;
51 if (event & POLLIN)
H A Dport.c34 rv |= POLLIN;
48 if (event & POLLIN)
/freebsd-12-stable/contrib/blacklist/bin/
H A Dblacklistd.c357 (*pfdp)[*nfd].events = POLLIN;
571 if (pfd[i].revents & POLLIN)
/freebsd-12-stable/sys/dev/mse/
H A Dmse.c453 if (events & (POLLIN | POLLRDNORM)) {
457 revents |= events & (POLLIN | POLLRDNORM);
/freebsd-12-stable/sys/dev/vt/
H A Dvt_sysmouse.c464 if (events & (POLLIN|POLLRDNORM)) {
466 revents = events & (POLLIN|POLLRDNORM);
/freebsd-12-stable/sys/dev/tcp_log/
H A Dtcp_log_dev.c417 if (events & (POLLIN | POLLRDNORM)) {
428 revents = events & (POLLIN | POLLRDNORM);
/freebsd-12-stable/tools/test/gpioevents/
H A Dgpioevents.c108 case POLLIN:
109 return "POLLIN";
258 fds.events = POLLIN | POLLRDNORM;
/freebsd-12-stable/sbin/dhclient/
H A Ddispatch.c219 fds[i].events = POLLIN;
247 if ((fds[i].revents & (POLLIN | POLLHUP))) {
/freebsd-12-stable/sys/dev/cmx/
H A Dcmx.c96 "\01POLLIN" /* 0x0001 */
658 if (events & (POLLIN | POLLRDNORM)) {
660 revents |= events & (POLLIN | POLLRDNORM);
/freebsd-12-stable/contrib/ofed/infiniband-diags/src/
H A Drdma-ndd.c331 fds[1].events = POLLIN;
/freebsd-12-stable/contrib/sendmail/libmilter/
H A Dlibmilter.h174 # define MI_POLL_RD_FLAGS (POLLIN | POLLPRI)
/freebsd-12-stable/contrib/libpcap/
H A Dpcap-netmap.c96 struct pollfd pfd = { .fd = p->fd, .events = POLLIN, .revents = 0 };
/freebsd-12-stable/contrib/libstdc++/config/io/
H A Dbasic_file_stdio.cc354 __pfd[0].events = POLLIN;
/freebsd-12-stable/contrib/hyperv/tools/
H A Dhv_vss_daemon.c201 hv_vss_poll_fd[0].events = POLLIN | POLLRDNORM;
/freebsd-12-stable/contrib/less/
H A Dos.c166 if (poll_events(tty, POLLIN) && getchr() == CONTROL('X'))
/freebsd-12-stable/sys/contrib/libsodium/src/libsodium/randombytes/sysrandom/
H A Drandombytes_sysrandom.c145 pfd.events = POLLIN;

Completed in 389 milliseconds

1234567