Home
last modified time | relevance | path

Searched refs:POLLRDNORM (Results 1 – 25 of 87) sorted by relevance

1234

/freebsd/contrib/llvm-project/libc/include/llvm-libc-macros/linux/
H A Dpoll-macros.h37 #ifndef POLLRDNORM
38 #define POLLRDNORM 0x0040 macro
/freebsd/crypto/openssh/openbsd-compat/
H A Dbsd-poll.h64 #define POLLRDNORM 0x0040
65 #define POLLNORM POLLRDNORM
/freebsd/sys/sys/
H A Dpoll.h64 #define POLLRDNORM 0x0040 /* non-OOB/URG data available */ macro
85 #define POLLSTANDARD (POLLIN|POLLPRI|POLLOUT|POLLRDNORM|POLLRDBAND|\
/freebsd/sys/netpfil/ipfilter/netinet/
H A Dmlfk_ipl.c456 if ((events & (POLLIN | POLLRDNORM)) && ipf_log_canread(&V_ipfmain, unit)) in ipfpoll()
457 revents |= events & (POLLIN | POLLRDNORM); in ipfpoll()
461 if ((events & (POLLIN | POLLRDNORM)) && ipf_auth_waiting(&V_ipfmain)) in ipfpoll()
462 revents |= events & (POLLIN | POLLRDNORM); in ipfpoll()
465 if ((events & (POLLIN | POLLRDNORM)) && ipf_sync_canread(&V_ipfmain)) in ipfpoll()
466 revents |= events & (POLLIN | POLLRDNORM); in ipfpoll()
476 if ((revents == 0) && ((events & (POLLIN|POLLRDNORM)) != 0)) in ipfpoll()
/freebsd/sys/dev/snp/
H A Dsnp.c323 (POLLHUP|POLLIN|POLLRDNORM|POLLOUT|POLLWRNORM)); in snp_poll()
327 if (events & (POLLIN | POLLRDNORM)) { in snp_poll()
332 revents |= events & (POLLIN | POLLRDNORM); in snp_poll()
/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Deventpoll.h39 #define EPOLLRDNORM POLLRDNORM
/freebsd/sys/kern/
H A Dsubr_log.c183 if (events & (POLLIN | POLLRDNORM)) { in logpoll()
186 revents |= events & (POLLIN | POLLRDNORM); in logpoll()
H A Dtty_pts.c396 return ((events & (POLLIN|POLLRDNORM)) | POLLHUP); in ptsdev_poll()
399 if (events & (POLLIN|POLLRDNORM)) { in ptsdev_poll()
403 revents |= events & (POLLIN|POLLRDNORM); in ptsdev_poll()
423 if (events & (POLLIN|POLLRDNORM)) in ptsdev_poll()
H A Dsys_eventfd.c285 if ((events & (POLLIN | POLLRDNORM)) != 0 && efd->efd_count > 0) in eventfd_poll()
286 revents |= events & (POLLIN | POLLRDNORM); in eventfd_poll()
H A Dkern_devctl.c322 if (events & (POLLIN | POLLRDNORM)) { in devpoll()
324 revents = events & (POLLIN | POLLRDNORM); in devpoll()
/freebsd/sys/fs/fuse/
H A Dfuse_device.c287 (POLLHUP|POLLIN|POLLRDNORM|POLLOUT|POLLWRNORM)); in fuse_device_poll()
289 if (events & (POLLIN | POLLRDNORM)) { in fuse_device_poll()
292 revents |= events & (POLLIN | POLLRDNORM); in fuse_device_poll()
/freebsd/usr.sbin/virtual_oss/virtual_bt_speaker/
H A Dbt_speaker.c272 pfd[0].events = POLLIN | POLLRDNORM; in process_connection()
276 pfd[1].events = POLLIN | POLLRDNORM; in process_connection()
280 pfd[2].events = POLLIN | POLLRDNORM; in process_connection()
/freebsd/contrib/tnftp/
H A Dtnftp.h125 #if !defined(POLLRDNORM)
126 # define POLLRDNORM 0x0040 macro
/freebsd/lib/libsys/
H A Drecvmmsg.c51 pfd[0].events = ev = POLLIN | POLLRDNORM | POLLRDBAND | in __ssp_real()
/freebsd/sys/dev/random/
H A Drandomdev.c353 if (events & (POLLIN | POLLRDNORM)) { in randomdev_poll()
355 events &= (POLLIN | POLLRDNORM); in randomdev_poll()
/freebsd/sys/fs/deadfs/
H A Ddead_vnops.c150 return (POLLHUP | ((POLLIN | POLLRDNORM) & ap->a_events)); in dead_poll()
/freebsd/sys/dev/vt/
H A Dvt_sysmouse.c475 if (events & (POLLIN|POLLRDNORM)) { in sysmouse_poll()
477 revents = events & (POLLIN|POLLRDNORM); in sysmouse_poll()
/freebsd/sys/dev/tcp_log/
H A Dtcp_log_dev.c413 if (events & (POLLIN | POLLRDNORM)) { in tcp_log_dev_poll()
424 revents = events & (POLLIN | POLLRDNORM); in tcp_log_dev_poll()
/freebsd/sys/compat/linux/
H A Dlinux.c556 bits |= POLLRDNORM; in linux_to_bsd_poll_events()
611 if (bev & POLLRDNORM) in bsd_to_linux_poll_events()
/freebsd/sys/dev/sound/midi/
H A Dmidi.c505 if (events & (POLLIN | POLLRDNORM)) { in midi_poll()
507 revents |= events & (POLLIN | POLLRDNORM); in midi_poll()
/freebsd/lib/virtual_oss/oss/
H A Doss.c152 struct pollfd fds = { .fd = pbe->fd, .events = POLLIN | POLLRDNORM }; in oss_rec_transfer()
/freebsd/sys/netgraph/
H A Dng_device.c609 if (events & (POLLIN | POLLRDNORM) && in ngdpoll()
611 revents |= events & (POLLIN | POLLRDNORM); in ngdpoll()
/freebsd/sys/dev/xen/evtchn/
H A Devtchn_dev.c539 if (events & (POLLIN | POLLRDNORM)) { in evtchn_poll()
541 mask |= events & (POLLIN | POLLRDNORM); in evtchn_poll()
/freebsd/tools/test/gpioevents/
H A Dgpioevents.c116 case POLLRDNORM: in poll_event_to_str()
260 fds.events = POLLIN | POLLRDNORM; in run_poll()
/freebsd/contrib/hyperv/tools/
H A Dhv_vss_daemon.c201 hv_vss_poll_fd[0].events = POLLIN | POLLRDNORM; in main()

1234