Symbol: POLLOUT
arch/m68k/include/uapi/asm/poll.h
5
#define POLLWRNORM POLLOUT
arch/mips/include/uapi/asm/poll.h
5
#define POLLWRNORM POLLOUT
arch/sparc/include/uapi/asm/poll.h
5
#define POLLWRNORM POLLOUT
arch/um/drivers/ubd_user.c
75
kernel_pollfd.events = POLLOUT;
arch/x86/um/user-offsets.c
74
DEFINE(UM_POLLOUT, POLLOUT);
arch/xtensa/include/uapi/asm/poll.h
15
#define POLLWRNORM POLLOUT
tools/perf/tests/fdarray.c
141
FDA_ADD(3, 88, POLLIN | POLLOUT, 4);
tools/perf/tests/fdarray.c
148
FDA_CHECK(3, 88, POLLIN | POLLOUT);
tools/testing/selftests/bpf/prog_tests/test_xsk.c
1170
fds.events = POLLOUT;
tools/testing/selftests/net/mptcp/mptcp_connect.c
636
.events = POLLIN | POLLOUT,
tools/testing/selftests/net/mptcp/mptcp_connect.c
658
fds.events & POLLIN, fds.events & POLLOUT);
tools/testing/selftests/net/mptcp/mptcp_connect.c
679
if ((fds.events & POLLOUT) == 0) {
tools/testing/selftests/net/mptcp/mptcp_connect.c
697
if (fds.revents & POLLOUT) {
tools/testing/selftests/net/mptcp/mptcp_connect.c
716
fds.events &= ~POLLOUT;
tools/testing/selftests/net/mptcp/mptcp_connect.c
729
fds.events &= ~POLLOUT;
tools/testing/selftests/net/msg_zerocopy.c
562
while (!do_poll(fd, POLLOUT)) {
tools/testing/selftests/net/psock_tpacket.c
412
pfd.events = POLLOUT | POLLERR;
tools/testing/selftests/nolibc/nolibc-test.c
1433
CASE_TEST(poll_stdout); EXPECT_SYSNE(1, ({ struct pollfd fds = { 1, POLLOUT, 0}; poll(&fds, 1, 0); }), -1); break;
tools/testing/selftests/seccomp/seccomp_bpf.c
3442
pollfd.events = POLLIN | POLLOUT;
tools/testing/selftests/seccomp/seccomp_bpf.c
3461
pollfd.events = POLLIN | POLLOUT;
tools/testing/selftests/seccomp/seccomp_bpf.c
3464
EXPECT_EQ(pollfd.revents, POLLOUT);
tools/testing/selftests/seccomp/seccomp_bpf.c
3878
pollfd.events = POLLIN | POLLOUT;
tools/testing/selftests/seccomp/seccomp_bpf.c
3886
pollfd.events = POLLIN | POLLOUT;
tools/testing/selftests/seccomp/seccomp_bpf.c
3889
EXPECT_EQ(pollfd.revents, POLLOUT);