Symbol: POLLNVAL
crypto/krb5/src/util/verto/ev_poll.c
116
if (expect_false (p->revents & POLLNVAL))
crypto/openssh/channels.c
2852
if ((pfd->revents & POLLNVAL) != 0) {
crypto/openssh/openbsd-compat/bsd-poll.h
62
#ifndef POLLNVAL
crypto/openssh/regress/netcat.c
854
if (pfd[n].revents & (POLLERR|POLLNVAL)) {
crypto/openssh/ssh-keyscan.c
589
if (read_wait[i].revents & (POLLHUP|POLLERR|POLLNVAL))
lib/libc/rpc/clnt_bcast.c
525
else if (pfd[i].revents & POLLNVAL) {
lib/libc/rpc/svc.c
727
if (p->revents & POLLNVAL) {
lib/libsys/recvmmsg.c
56
if (pfd[0].revents & POLLNVAL) {
sys/compat/linux/linux.c
554
bits |= POLLNVAL;
sys/compat/linux/linux.c
609
if (bev & POLLNVAL)
sys/compat/linuxkpi/common/include/linux/eventpoll.h
38
#define EPOLLNVAL POLLNVAL
sys/dev/evdev/cdev.c
315
return (POLLNVAL);
sys/dev/evdev/uinput.c
381
return (POLLNVAL);
sys/fs/deadfs/dead_vnops.c
145
return (POLLNVAL);
sys/kern/kern_descrip.c
5530
return (POLLNVAL);
sys/kern/sys_generic.c
1048
return (POLLNVAL);
sys/kern/sys_generic.c
1727
fd->revents = POLLNVAL;
sys/kern/sys_generic.c
1790
fds->revents = POLLNVAL;
sys/kern/vfs_default.c
560
return (POLLNVAL);
sys/sys/poll.h
86
POLLWRBAND|POLLERR|POLLHUP|POLLNVAL)
tests/sys/capsicum/capability-fd.cc
554
EXPECT_NE(0, (pollfd.revents & POLLNVAL));
tests/sys/capsicum/linux.cc
178
EXPECT_NE(0, (poll_fd.revents & POLLNVAL));
tests/sys/capsicum/linux.cc
183
EXPECT_EQ(0, (poll_fd.revents & POLLNVAL));
tests/sys/capsicum/linux.cc
229
EXPECT_NE(0, (poll_fd.revents & POLLNVAL));
tests/sys/capsicum/linux.cc
234
EXPECT_EQ(0, (poll_fd.revents & POLLNVAL));
tests/sys/capsicum/linux.cc
468
EXPECT_NE(0, (poll_fd.revents & POLLNVAL));
tests/sys/capsicum/linux.cc
473
EXPECT_NE(0, (poll_fd.revents & POLLNVAL));
tests/sys/capsicum/linux.cc
478
EXPECT_EQ(0, (poll_fd.revents & POLLNVAL));
tests/sys/capsicum/linux.cc
86
EXPECT_NE(0, (poll_fd.revents & POLLNVAL));
tests/sys/capsicum/linux.cc
92
EXPECT_EQ(0, (poll_fd.revents & POLLNVAL));
tests/sys/capsicum/select.cc
128
EXPECT_NE(0, (cap_fd[kCapCount + 1].revents & POLLNVAL));
tests/sys/capsicum/select.cc
137
EXPECT_NE(0, (cap_fd[kCapCount + 1].revents & POLLNVAL));
tests/sys/file/path_test.c
506
ATF_REQUIRE_MSG(pollfd.revents == POLLNVAL, "unexpected revents %x",
tests/sys/file/path_test.c
511
ATF_REQUIRE_MSG(pollfd.revents == POLLNVAL, "unexpected revents %x",
tools/regression/security/cap_test/cap_test_capabilities.c
397
CHECK((pollfd.revents & POLLNVAL) == 0);
tools/regression/security/cap_test/cap_test_capabilities.c
399
CHECK((pollfd.revents & POLLNVAL) != 0);
tools/test/gpioevents/gpioevents.c
128
case POLLNVAL:
usr.bin/truss/syscalls.c
650
X(POLLHUP) X(POLLNVAL) X(POLLRDNORM) X(POLLRDBAND)
usr.sbin/virtual_oss/virtual_oss/httpd.c
691
POLLERR | POLLHUP | POLLNVAL);