Home
last modified time | relevance | path

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

/xnu-12377.41.6/bsd/sys/
H A Dpoll.h71 #define POLLRDNORM 0x0040 /* non-OOB/URG data available */ macro
93 #define POLLSTANDARD (POLLIN|POLLPRI|POLLOUT|POLLRDNORM|POLLRDBAND|\
/xnu-12377.41.6/tests/skywalk/
H A Dskt_shutdown2.c100 fds.events = POLLRDNORM; in skt_shutdown2_common()
106 assert(fds.events == POLLRDNORM); in skt_shutdown2_common()
107 assert(fds.revents == (POLLRDNORM | POLLHUP)); in skt_shutdown2_common()
H A Dskt_oneslot.c164 fds.events = POLLRDNORM; in skt_oneslot_common()
170 assert(fds.events == POLLRDNORM); in skt_oneslot_common()
171 assert(fds.revents == POLLRDNORM); in skt_oneslot_common()
H A Dskt_nslots.c213 fds.events = POLLRDNORM; in skt_nslots_common()
218 assert(fds.events == POLLRDNORM); in skt_nslots_common()
219 assert(fds.revents == POLLRDNORM); in skt_nslots_common()
H A Dskt_shutdown.c266 fds.events = sock_fds.events = POLLRDNORM; in skt_shutdown_common()
276 assert(sock_fds.events == POLLRDNORM); in skt_shutdown_common()
H A Dskywalk_test_utils.c990 fds.events = POLLRDNORM; in sktc_pump_ring_nslots_poll()
1024 assert(fds.events == POLLRDNORM); in sktc_pump_ring_nslots_poll()
1025 assert(fds.revents == POLLRDNORM); in sktc_pump_ring_nslots_poll()
/xnu-12377.41.6/bsd/security/audit/
H A Daudit_pipe.c1067 if (events & (POLLIN | POLLRDNORM)) { in audit_pipe_poll()
1070 revents |= events & (POLLIN | POLLRDNORM); in audit_pipe_poll()
H A Daudit_session.c1966 if (events & (POLLIN | POLLRDNORM)) { in audit_sdev_poll()
1969 revents |= events & (POLLIN | POLLRDNORM); in audit_sdev_poll()
/xnu-12377.41.6/tests/
H A Dkqueue_file_tests.c1715 …init_poll_test(&test, "10.1.3: does poll say I can read a nonempty FIFO?", FILE1, 1, 1, POLLRDNORM in run_poll_tests()
1723 …st(&test, "10.1.4: does poll say I can read a nonempty regular file?", FILE1, 2, 1, POLLRDNORM, 1); in run_poll_tests()
1730 …init_poll_test(&test, "10.1.5: does poll say I can read an empty file?", FILE1, 1, 1, POLLRDNORM, … in run_poll_tests()
1739 …init_poll_test(&test, "10.2.2: does poll say I can read an empty FIFO?", FILE1, 1, 1, POLLRDNORM, … in run_poll_tests()
/xnu-12377.41.6/bsd/kern/
H A Dsys_generic.c1754 if (events & (POLLIN | POLLRDNORM | POLLPRI | POLLRDBAND | POLLHUP)) { in poll_nocancel()
1873 mask = (POLLIN | POLLRDNORM | POLLPRI | POLLRDBAND); in poll_callback()
1875 mask = (POLLIN | POLLRDNORM); in poll_callback()
H A Duipc_socket.c6447 if (events & (POLLIN | POLLRDNORM)) { in sopoll()
6449 revents |= events & (POLLIN | POLLRDNORM); in sopoll()
6466 if (events & (POLLIN | POLLPRI | POLLRDNORM | POLLRDBAND)) { in sopoll()
/xnu-12377.41.6/bsd/skywalk/channel/
H A Dchannel.c1226 want_rx = (events & (POLLIN | POLLRDNORM)); in ch_event()
/xnu-12377.41.6/bsd/net/
H A Dnecp_client.c949 u_int want_rx = events & (POLLIN | POLLRDNORM); in necp_fd_poll()