Home
last modified time | relevance | path

Searched refs:POLLWRNORM (Results 1 – 5 of 5) sorted by relevance

/xnu-8019.80.24/bsd/sys/
H A Dpoll.h72 #define POLLWRNORM POLLOUT /* no write type differentiation */ macro
/xnu-8019.80.24/tests/
H A Dkqueue_file_tests.c1702 …init_poll_test(&test, "10.1.1: does poll say I can write a regular file?", FILE1, 1, 1, POLLWRNORM in run_poll_tests()
1708 …init_poll_test(&test, "10.1.2: does poll say I can write an empty FIFO?", FILE1, 1, 1, POLLWRNORM,… in run_poll_tests()
1746 …init_poll_test(&test, "10.2.3: does poll say I can write a full FIFO?", FILE1, 1, 1, POLLWRNORM, 0… in run_poll_tests()
/xnu-8019.80.24/bsd/kern/
H A Dsys_generic.c1987 (events & (POLLOUT | POLLWRNORM | POLLWRBAND))) { in poll_nocancel()
2104 fds->revents |= (fds->events & (POLLOUT | POLLWRNORM | POLLWRBAND)); in poll_callback()
H A Duipc_socket.c6560 if (events & (POLLOUT | POLLWRNORM)) { in sopoll()
6562 revents |= events & (POLLOUT | POLLWRNORM); in sopoll()
6582 if (events & (POLLOUT | POLLWRNORM)) { in sopoll()
/xnu-8019.80.24/bsd/skywalk/channel/
H A Dchannel.c1218 want_tx = (events & (POLLOUT | POLLWRNORM)); in ch_event()