Searched refs:POLLRDNORM (Results 1 - 6 of 6) sorted by relevance

/xnu-2782.1.97/bsd/sys/
H A Dpoll.h71 #define POLLRDNORM 0x0040 /* non-OOB/URG data available */ macro
93 #define POLLSTANDARD (POLLIN|POLLPRI|POLLOUT|POLLRDNORM|POLLRDBAND|\
/xnu-2782.1.97/bsd/security/audit/
H A Daudit_pipe.c1056 if (events & (POLLIN | POLLRDNORM)) {
1059 revents |= events & (POLLIN | POLLRDNORM);
H A Daudit_session.c1961 if (events & (POLLIN | POLLRDNORM)) {
1964 revents |= events & (POLLIN | POLLRDNORM);
/xnu-2782.1.97/bsd/kern/
H A Dsys_generic.c1488 if (events & ( POLLIN | POLLRDNORM | POLLPRI | POLLRDBAND | POLLHUP )) {
1490 if (!(events & ( POLLIN | POLLRDNORM )))
1573 mask = (POLLIN | POLLRDNORM | POLLPRI | POLLRDBAND );
1575 mask = (POLLIN | POLLRDNORM );
H A Duipc_socket.c5334 if (events & (POLLIN | POLLRDNORM))
5336 revents |= events & (POLLIN | POLLRDNORM);
5347 if (events & (POLLIN | POLLPRI | POLLRDNORM | POLLRDBAND)) {
/xnu-2782.1.97/tools/tests/kqueue_tests/
H A Dkqueue_file_tests.c1521 init_poll_test(&test, "10.1.3: does poll say I can read a nonempty FIFO?", FILE1, 1, 1, POLLRDNORM, 1);
1529 init_poll_test(&test, "10.1.4: does poll say I can read a nonempty regular file?", FILE1, 2, 1, POLLRDNORM, 1);
1536 init_poll_test(&test, "10.1.5: does poll say I can read an empty file?", FILE1, 1, 1, POLLRDNORM, 1);
1545 init_poll_test(&test, "10.2.2: does poll say I can read an empty FIFO?", FILE1, 1, 1, POLLRDNORM, 0);

Completed in 104 milliseconds