Symbol: pollfd
arch/um/drivers/ubd_user.c
26
static struct pollfd kernel_pollfd;
arch/um/os-Linux/file.c
681
struct pollfd pollfds[2] = {};
fs/select.c
1011
struct pollfd *fds = walk->entries;
fs/select.c
1038
struct pollfd __user *ufds = restart_block->poll.ufds;
fs/select.c
1054
SYSCALL_DEFINE3(poll, struct pollfd __user *, ufds, unsigned int, nfds,
fs/select.c
1086
SYSCALL_DEFINE5(ppoll, struct pollfd __user *, ufds, unsigned int, nfds,
fs/select.c
1112
SYSCALL_DEFINE5(ppoll_time32, struct pollfd __user *, ufds, unsigned int, nfds,
fs/select.c
1384
COMPAT_SYSCALL_DEFINE5(ppoll_time32, struct pollfd __user *, ufds,
fs/select.c
1410
COMPAT_SYSCALL_DEFINE5(ppoll_time64, struct pollfd __user *, ufds,
fs/select.c
837
struct pollfd entries[] __counted_by(len);
fs/select.c
840
#define POLLFD_PER_PAGE ((PAGE_SIZE-sizeof(struct poll_list)) / sizeof(struct pollfd))
fs/select.c
849
static inline __poll_t do_pollfd(struct pollfd *pollfd, poll_table *pwait,
fs/select.c
853
int fd = pollfd->fd;
fs/select.c
864
filter = demangle_poll(pollfd->events) | EPOLLERR | EPOLLHUP;
fs/select.c
896
struct pollfd * pfd, * pfd_end;
fs/select.c
961
sizeof(struct pollfd))
fs/select.c
963
static int do_sys_poll(struct pollfd __user *ufds, unsigned int nfds,
fs/select.c
988
sizeof(struct pollfd) * walk->len))
include/linux/compat.h
651
asmlinkage long compat_sys_ppoll_time32(struct pollfd __user *ufds,
include/linux/compat.h
656
asmlinkage long compat_sys_ppoll_time64(struct pollfd __user *ufds,
include/linux/restart_block.h
15
struct pollfd;
include/linux/restart_block.h
51
struct pollfd __user *ufds;
include/linux/syscalls.h
1105
asmlinkage long sys_poll(struct pollfd __user *ufds, unsigned int nfds,
include/linux/syscalls.h
34
struct pollfd;
include/linux/syscalls.h
510
asmlinkage long sys_ppoll(struct pollfd __user *, unsigned int,
include/linux/syscalls.h
513
asmlinkage long sys_ppoll_time32(struct pollfd __user *, unsigned int,
samples/bpf/xdp_router_ipv4_user.c
453
struct pollfd fds_route, fds_arp;
samples/bpf/xdp_sample_user.c
1536
struct pollfd pfd[2] = {};
samples/cgroup/memcg_event_listener.c
227
struct pollfd fds[1];
samples/connector/ucon.c
107
struct pollfd pfd;
samples/nitro_enclaves/ne_ioctl_sample.c
199
struct pollfd fds[1] = {};
samples/nitro_enclaves/ne_ioctl_sample.c
656
struct pollfd fds[1] = {};
samples/timers/hpet_example.c
135
struct pollfd pfd;
samples/uhid/uhid-example.c
391
struct pollfd pfds[2];
tools/firewire/nosy-dump.c
904
struct pollfd pollfds[2];
tools/gpio/gpio-watch.c
27
struct pollfd pfd;
tools/hv/hv_kvp_daemon.c
1779
struct pollfd pfd;
tools/hv/hv_vss_daemon.c
213
struct pollfd pfd;
tools/iio/iio_generic_buffer.c
729
struct pollfd pfd = {
tools/include/nolibc/poll.h
24
int sys_poll(struct pollfd *fds, int nfds, int timeout)
tools/include/nolibc/poll.h
46
int poll(struct pollfd *fds, int nfds, int timeout)
tools/leds/led_hw_brightness_mon.c
30
struct pollfd pollfd;
tools/leds/led_hw_brightness_mon.c
55
pollfd.fd = fd;
tools/leds/led_hw_brightness_mon.c
56
pollfd.events = POLLPRI;
tools/leds/led_hw_brightness_mon.c
59
ret = poll(&pollfd, 1, -1);
tools/leds/led_hw_brightness_mon.c
73
ret = lseek(pollfd.fd, 0, SEEK_SET);
tools/lib/api/fd/array.c
26
size_t size = sizeof(struct pollfd) * nr_alloc;
tools/lib/api/fd/array.c
27
struct pollfd *entries = realloc(fda->entries, size);
tools/lib/api/fd/array.c
38
memset(&entries[fda->nr_alloc], 0, sizeof(struct pollfd) * nr);
tools/lib/api/fd/array.c
93
struct pollfd *entry;
tools/lib/api/fd/array.h
23
struct pollfd *entries;
tools/lib/api/fd/array.h
7
struct pollfd;
tools/lib/api/io.h
55
struct pollfd pfds[] = {
tools/lib/perf/evlist.c
244
fdarray__exit(&evlist->pollfd);
tools/lib/perf/evlist.c
32
fdarray__init(&evlist->pollfd, 64);
tools/lib/perf/evlist.c
424
if (fdarray__available_entries(&evlist->pollfd) < nfds &&
tools/lib/perf/evlist.c
425
fdarray__grow(&evlist->pollfd, nfds) < 0)
tools/lib/perf/evlist.c
434
int pos = fdarray__add(&evlist->pollfd, fd, revent | POLLERR | POLLHUP, flags);
tools/lib/perf/evlist.c
437
evlist->pollfd.priv[pos].ptr = ptr;
tools/lib/perf/evlist.c
455
return fdarray__filter(&evlist->pollfd, revents_and_mask,
tools/lib/perf/evlist.c
461
return fdarray__poll(&evlist->pollfd, timeout);
tools/lib/perf/evlist.c
744
if (evlist->pollfd.entries == NULL && perf_evlist__alloc_pollfd(evlist) < 0)
tools/lib/perf/include/internal/evlist.h
32
struct fdarray pollfd;
tools/perf/bench/sched-messaging.c
82
struct pollfd pollfd = { .fd = wakefd, .events = POLLIN };
tools/perf/bench/sched-messaging.c
89
if (poll(&pollfd, 1, -1) != 1)
tools/perf/builtin-daemon.c
446
struct pollfd pollfd = {
tools/perf/builtin-daemon.c
455
int err = poll(&pollfd, 1, 1000);
tools/perf/builtin-daemon.c
485
struct pollfd pollfd = {
tools/perf/builtin-daemon.c
494
int err = poll(&pollfd, 1, 1000);
tools/perf/builtin-daemon.c
513
struct pollfd pollfd = { .events = POLLIN, };
tools/perf/builtin-daemon.c
554
pollfd.fd = ack;
tools/perf/builtin-daemon.c
556
if (!poll(&pollfd, 1, 2000)) {
tools/perf/builtin-daemon.c
561
if (!(pollfd.revents & POLLIN)) {
tools/perf/builtin-ftrace.c
1130
struct pollfd pollfd = {
tools/perf/builtin-ftrace.c
1140
pollfd.fd = trace_fd;
tools/perf/builtin-ftrace.c
1155
if (poll(&pollfd, 1, -1) < 0)
tools/perf/builtin-ftrace.c
1158
if (pollfd.revents & POLLIN) {
tools/perf/builtin-ftrace.c
745
struct pollfd pollfd = {
tools/perf/builtin-ftrace.c
789
pollfd.fd = trace_fd;
tools/perf/builtin-ftrace.c
812
if (poll(&pollfd, 1, -1) < 0)
tools/perf/builtin-ftrace.c
815
if (pollfd.revents & POLLIN) {
tools/perf/builtin-kvm.c
1453
struct fdarray *fda = &kvm->evlist->core.pollfd;
tools/perf/builtin-record.c
110
struct fdarray pollfd;
tools/perf/builtin-record.c
1112
fdarray__init(&thread_data->pollfd, 64);
tools/perf/builtin-record.c
1119
for (f = 0; f < evlist->core.pollfd.nr; f++) {
tools/perf/builtin-record.c
1120
void *ptr = evlist->core.pollfd.priv[f].ptr;
tools/perf/builtin-record.c
1123
pos = fdarray__dup_entry_from(&thread_data->pollfd, f,
tools/perf/builtin-record.c
1124
&evlist->core.pollfd);
tools/perf/builtin-record.c
1128
thread_data, pos, evlist->core.pollfd.entries[f].fd);
tools/perf/builtin-record.c
1148
fdarray__exit(&thread_data[t].pollfd);
tools/perf/builtin-record.c
1172
struct pollfd *e_entries = evlist->core.pollfd.entries;
tools/perf/builtin-record.c
1173
struct pollfd *t_entries = thread_data->pollfd.entries;
tools/perf/builtin-record.c
1196
struct fdarray *fda = &evlist->core.pollfd;
tools/perf/builtin-record.c
1202
ret = fdarray__dup_entry_from(&thread_data->pollfd, i, fda);
tools/perf/builtin-record.c
1253
ret = fdarray__add(&thread_data[t].pollfd, thread_data[t].pipes.msg[0],
tools/perf/builtin-record.c
1743
struct fdarray *pollfd;
tools/perf/builtin-record.c
1755
pollfd = &thread->pollfd;
tools/perf/builtin-record.c
1766
err = fdarray__poll(pollfd, -1);
tools/perf/builtin-record.c
1775
if (fdarray__filter(pollfd, POLLERR | POLLHUP,
tools/perf/builtin-record.c
1780
if (pollfd->entries[ctlfd_pos].revents & POLLHUP) {
tools/perf/builtin-record.c
1784
pollfd->entries[ctlfd_pos].fd = -1;
tools/perf/builtin-record.c
1785
pollfd->entries[ctlfd_pos].events = 0;
tools/perf/builtin-record.c
1788
pollfd->entries[ctlfd_pos].revents = 0;
tools/perf/builtin-record.c
2799
err = fdarray__poll(&thread->pollfd, -1);
tools/perf/builtin-record.c
2808
if (fdarray__filter(&thread->pollfd, POLLERR | POLLHUP,
tools/perf/builtin-top.c
497
struct pollfd stdin_poll = { .fd = 0, .events = POLLIN };
tools/perf/builtin-top.c
677
struct pollfd stdin_poll = { .fd = 0, .events = POLLIN };
tools/perf/tests/builtin-test.c
434
struct pollfd pfds[1] = {
tools/perf/util/evlist.c
2051
struct pollfd *entries = evlist->core.pollfd.entries;
tools/perf/util/evlist.c
2239
struct pollfd *entries = evlist->core.pollfd.entries;
tools/perf/util/evlist.c
2461
struct pollfd *entries;
tools/perf/util/evlist.c
2467
entries = eet->evlist->core.pollfd.entries;
tools/perf/util/evlist.h
21
struct pollfd;
tools/perf/util/intel-tpebs.c
255
struct pollfd pollfd = { .events = POLLIN, };
tools/perf/util/intel-tpebs.c
284
pollfd.fd = ack_fd[0];
tools/perf/util/intel-tpebs.c
292
if (!poll(&pollfd, 1, 500)) {
tools/perf/util/intel-tpebs.c
305
if (!(pollfd.revents & POLLIN)) {
tools/perf/util/python.c
1526
for (i = 0; i < evlist->core.pollfd.nr; ++i) {
tools/perf/util/python.c
1528
file = PyFile_FromFd(evlist->core.pollfd.entries[i].fd, "perf", "r", -1,
tools/testing/selftests/alsa/mixer-test.c
187
&card_data->pollfd, 1);
tools/testing/selftests/alsa/mixer-test.c
218
err = poll(&(ctl->card->pollfd), 1, timeout);
tools/testing/selftests/alsa/mixer-test.c
229
&(ctl->card->pollfd),
tools/testing/selftests/alsa/mixer-test.c
38
struct pollfd pollfd;
tools/testing/selftests/bpf/prog_tests/flow_dissector_classification.c
417
struct pollfd pfd;
tools/testing/selftests/bpf/prog_tests/sock_iter_batch.c
196
static int accept_from_one(struct pollfd *server_poll_fds,
tools/testing/selftests/bpf/prog_tests/sock_iter_batch.c
218
struct pollfd *server_poll_fds = NULL;
tools/testing/selftests/bpf/prog_tests/test_xsk.c
1156
struct pollfd fds = { };
tools/testing/selftests/bpf/prog_tests/test_xsk.c
976
struct pollfd fds = { };
tools/testing/selftests/bpf/prog_tests/xdp_metadata.c
262
struct pollfd fds = {};
tools/testing/selftests/bpf/test_lirc_mode2_user.c
114
struct pollfd pfd = { .fd = inputfd, .events = POLLIN };
tools/testing/selftests/bpf/xdp_hw_metadata.c
447
struct pollfd fds[rxq + 1];
tools/testing/selftests/cgroup/lib/cgroup_util.c
653
struct pollfd fds = {
tools/testing/selftests/cgroup/wait_inotify.c
33
struct pollfd fds = { .events = POLLIN, };
tools/testing/selftests/drivers/net/hw/ncdevmem.c
1171
struct pollfd pfd;
tools/testing/selftests/drivers/net/psp_responder.c
126
struct pollfd pfds[3];
tools/testing/selftests/filesystems/epoll/epoll_wakeup_test.c
1006
struct pollfd pfd;
tools/testing/selftests/filesystems/epoll/epoll_wakeup_test.c
1054
struct pollfd pfd;
tools/testing/selftests/filesystems/epoll/epoll_wakeup_test.c
1102
struct pollfd pfd;
tools/testing/selftests/filesystems/epoll/epoll_wakeup_test.c
1150
struct pollfd pfd;
tools/testing/selftests/filesystems/epoll/epoll_wakeup_test.c
117
struct pollfd pfd;
tools/testing/selftests/filesystems/epoll/epoll_wakeup_test.c
1817
struct pollfd pfd;
tools/testing/selftests/filesystems/epoll/epoll_wakeup_test.c
1874
struct pollfd pfd;
tools/testing/selftests/filesystems/epoll/epoll_wakeup_test.c
1931
struct pollfd pfd;
tools/testing/selftests/filesystems/epoll/epoll_wakeup_test.c
1988
struct pollfd pfd;
tools/testing/selftests/filesystems/epoll/epoll_wakeup_test.c
2253
struct pollfd pfd;
tools/testing/selftests/filesystems/epoll/epoll_wakeup_test.c
2362
struct pollfd pfd;
tools/testing/selftests/filesystems/epoll/epoll_wakeup_test.c
2580
struct pollfd pfd;
tools/testing/selftests/filesystems/epoll/epoll_wakeup_test.c
2642
struct pollfd pfd;
tools/testing/selftests/filesystems/epoll/epoll_wakeup_test.c
2963
struct pollfd pfd;
tools/testing/selftests/filesystems/epoll/epoll_wakeup_test.c
3033
struct pollfd pfd;
tools/testing/selftests/filesystems/epoll/epoll_wakeup_test.c
305
struct pollfd pfd;
tools/testing/selftests/filesystems/epoll/epoll_wakeup_test.c
3121
struct pollfd pfd;
tools/testing/selftests/filesystems/epoll/epoll_wakeup_test.c
344
struct pollfd pfd;
tools/testing/selftests/filesystems/epoll/epoll_wakeup_test.c
384
struct pollfd pfd;
tools/testing/selftests/filesystems/epoll/epoll_wakeup_test.c
430
struct pollfd pfd;
tools/testing/selftests/filesystems/epoll/epoll_wakeup_test.c
63
struct pollfd pfd;
tools/testing/selftests/filesystems/epoll/epoll_wakeup_test.c
90
struct pollfd pfd;
tools/testing/selftests/ftrace/poll.c
24
struct pollfd pfd = {.events = POLLIN};
tools/testing/selftests/hid/hid_common.h
255
struct pollfd pfds[1];
tools/testing/selftests/hid/hidraw.c
140
struct pollfd pfds[1];
tools/testing/selftests/iommu/iommufd_utils.h
1116
struct pollfd pollfd = { .fd = event_fd, .events = POLLIN };
tools/testing/selftests/iommu/iommufd_utils.h
1123
ret = poll(&pollfd, 1, 1000);
tools/testing/selftests/ir/ir_loopback.c
176
struct pollfd pfd = { .fd = rlircfd, .events = POLLIN };
tools/testing/selftests/kselftest_harness.h
983
struct pollfd poll_child;
tools/testing/selftests/mm/uffd-common.c
534
struct pollfd pollfd[2];
tools/testing/selftests/mm/uffd-common.c
543
pollfd[0].fd = gopts->uffd;
tools/testing/selftests/mm/uffd-common.c
544
pollfd[0].events = POLLIN;
tools/testing/selftests/mm/uffd-common.c
545
pollfd[1].fd = gopts->pipefd[cpu*2];
tools/testing/selftests/mm/uffd-common.c
546
pollfd[1].events = POLLIN;
tools/testing/selftests/mm/uffd-common.c
551
ret = poll(pollfd, 2, -1);
tools/testing/selftests/mm/uffd-common.c
557
if (pollfd[1].revents) {
tools/testing/selftests/mm/uffd-common.c
558
if (!(pollfd[1].revents & POLLIN))
tools/testing/selftests/mm/uffd-common.c
559
err("pollfd[1].revents %d", pollfd[1].revents);
tools/testing/selftests/mm/uffd-common.c
560
if (read(pollfd[1].fd, &tmp_chr, 1) != 1)
tools/testing/selftests/mm/uffd-common.c
564
if (!(pollfd[0].revents & POLLIN))
tools/testing/selftests/mm/uffd-common.c
565
err("pollfd[0].revents %d", pollfd[0].revents);
tools/testing/selftests/mm/uffd-common.c
578
pollfd[0].fd = gopts->uffd;
tools/testing/selftests/net/icmp_rfc4884.c
103
struct pollfd pfd;
tools/testing/selftests/net/lib/csum.c
953
struct pollfd pfd;
tools/testing/selftests/net/mptcp/mptcp_connect.c
1181
struct pollfd polls;
tools/testing/selftests/net/mptcp/mptcp_connect.c
634
struct pollfd fds = {
tools/testing/selftests/net/msg_zerocopy.c
146
struct pollfd pfd;
tools/testing/selftests/net/psock_tpacket.c
222
struct pollfd pfd;
tools/testing/selftests/net/psock_tpacket.c
371
struct pollfd pfd;
tools/testing/selftests/net/psock_tpacket.c
584
struct pollfd pfd;
tools/testing/selftests/net/so_txtime.c
231
struct pollfd pfd = { .fd = fdt, .events = POLLERR };
tools/testing/selftests/net/tcp_mmap.c
214
struct pollfd pfd = { .fd = fd, .events = POLLIN, };
tools/testing/selftests/net/tls.c
1289
struct pollfd fd = { 0, 0, 0 };
tools/testing/selftests/net/tls.c
1308
struct pollfd fd = { 0, 0, 0 };
tools/testing/selftests/net/tls.c
1322
struct pollfd fd = { 0, 0, 0 };
tools/testing/selftests/net/tls.c
2155
struct pollfd pfd = { };
tools/testing/selftests/net/tls.c
2207
struct pollfd pfd = { };
tools/testing/selftests/net/tls.c
2715
struct pollfd pfd = { };
tools/testing/selftests/net/tls.c
2788
struct pollfd pfd = { };
tools/testing/selftests/net/txtimestamp.c
300
struct pollfd pollfd;
tools/testing/selftests/net/txtimestamp.c
303
memset(&pollfd, 0, sizeof(pollfd));
tools/testing/selftests/net/txtimestamp.c
304
pollfd.fd = fd;
tools/testing/selftests/net/txtimestamp.c
305
ret = poll(&pollfd, 1, cfg_poll_timeout);
tools/testing/selftests/net/udpgso_bench_rx.c
94
struct pollfd pfd;
tools/testing/selftests/net/udpgso_bench_tx.c
243
struct pollfd fds = {0};
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/pidfd/pidfd_getfd_test.c
246
struct pollfd fds;
tools/testing/selftests/pidfd/pidfd_info_test.c
203
struct pollfd fds = {};
tools/testing/selftests/pidfd/pidfd_info_test.c
243
struct pollfd fds = {};
tools/testing/selftests/pidfd/pidfd_info_test.c
421
struct pollfd fds = {};
tools/testing/selftests/pidfd/pidfd_info_test.c
570
struct pollfd fds = {};
tools/testing/selftests/pidfd/pidfd_poll_test.c
28
struct pollfd fds;
tools/testing/selftests/powerpc/tm/tm-signal-pagefault.c
88
struct pollfd pollfd;
tools/testing/selftests/powerpc/tm/tm-signal-pagefault.c
94
pollfd.fd = uffd;
tools/testing/selftests/powerpc/tm/tm-signal-pagefault.c
95
pollfd.events = POLLIN;
tools/testing/selftests/powerpc/tm/tm-signal-pagefault.c
96
if (poll(&pollfd, 1, -1) == -1) {
tools/testing/selftests/seccomp/seccomp_bpf.c
3386
struct pollfd pollfd;
tools/testing/selftests/seccomp/seccomp_bpf.c
3441
pollfd.fd = listener;
tools/testing/selftests/seccomp/seccomp_bpf.c
3442
pollfd.events = POLLIN | POLLOUT;
tools/testing/selftests/seccomp/seccomp_bpf.c
3444
EXPECT_GT(poll(&pollfd, 1, -1), 0);
tools/testing/selftests/seccomp/seccomp_bpf.c
3445
EXPECT_EQ(pollfd.revents, POLLIN);
tools/testing/selftests/seccomp/seccomp_bpf.c
3460
pollfd.fd = listener;
tools/testing/selftests/seccomp/seccomp_bpf.c
3461
pollfd.events = POLLIN | POLLOUT;
tools/testing/selftests/seccomp/seccomp_bpf.c
3463
EXPECT_GT(poll(&pollfd, 1, -1), 0);
tools/testing/selftests/seccomp/seccomp_bpf.c
3464
EXPECT_EQ(pollfd.revents, POLLOUT);
tools/testing/selftests/seccomp/seccomp_bpf.c
3849
struct pollfd pollfd;
tools/testing/selftests/seccomp/seccomp_bpf.c
3877
pollfd.fd = listener;
tools/testing/selftests/seccomp/seccomp_bpf.c
3878
pollfd.events = POLLIN | POLLOUT;
tools/testing/selftests/seccomp/seccomp_bpf.c
3880
EXPECT_GT(poll(&pollfd, 1, -1), 0);
tools/testing/selftests/seccomp/seccomp_bpf.c
3881
EXPECT_EQ(pollfd.revents, POLLIN);
tools/testing/selftests/seccomp/seccomp_bpf.c
3885
pollfd.fd = listener;
tools/testing/selftests/seccomp/seccomp_bpf.c
3886
pollfd.events = POLLIN | POLLOUT;
tools/testing/selftests/seccomp/seccomp_bpf.c
3888
EXPECT_GT(poll(&pollfd, 1, -1), 0);
tools/testing/selftests/seccomp/seccomp_bpf.c
3889
EXPECT_EQ(pollfd.revents, POLLOUT);
tools/testing/selftests/seccomp/seccomp_bpf.c
3933
struct pollfd pollfd;
tools/testing/selftests/seccomp/seccomp_bpf.c
3973
pollfd.fd = 200;
tools/testing/selftests/seccomp/seccomp_bpf.c
3974
pollfd.events = POLLHUP;
tools/testing/selftests/seccomp/seccomp_bpf.c
3976
EXPECT_GT(poll(&pollfd, 1, 2000), 0);
tools/testing/selftests/seccomp/seccomp_bpf.c
3977
EXPECT_GT((pollfd.revents & POLLHUP) ?: 0, 0);
tools/testing/selftests/seccomp/seccomp_bpf.c
4044
struct pollfd pollfd;
tools/testing/selftests/seccomp/seccomp_bpf.c
4116
pollfd.fd = 200;
tools/testing/selftests/seccomp/seccomp_bpf.c
4117
pollfd.events = POLLHUP;
tools/testing/selftests/seccomp/seccomp_bpf.c
4119
EXPECT_GT(poll(&pollfd, 1, 2000), 0);
tools/testing/selftests/seccomp/seccomp_bpf.c
4120
EXPECT_GT((pollfd.revents & POLLHUP) ?: 0, 0);
tools/testing/selftests/seccomp/seccomp_bpf.c
4918
struct pollfd pfd = {
tools/testing/selftests/sync/sync.c
60
struct pollfd fds;
tools/testing/selftests/thermal/intel/power_floor/power_floor_test.c
40
struct pollfd ufd;
tools/testing/selftests/thermal/intel/workload_hint/workload_hint_test.c
75
struct pollfd ufd;
tools/testing/selftests/ublk/kublk.c
1206
struct pollfd pfd;
tools/testing/vsock/vsock_perf.c
204
struct pollfd fds = { 0 };
tools/testing/vsock/vsock_perf.c
329
struct pollfd fds = { 0 };
tools/testing/vsock/vsock_test.c
1456
struct pollfd fds;
tools/testing/vsock/vsock_test.c
1618
struct pollfd fds = { 0 };
tools/testing/vsock/vsock_test.c
846
struct pollfd fds;
tools/testing/vsock/vsock_test_zerocopy.c
152
struct pollfd fds = { 0 };
tools/testing/vsock/vsock_test_zerocopy.c
370
struct pollfd fds;
tools/usb/ffs-aio-example/simple/device_app/aio_simple.c
187
struct pollfd pfds[1];
tools/usb/usbip/src/usbipd.c
497
struct pollfd *fds;
tools/usb/usbip/src/usbipd.c
546
fds = calloc(nsockfd, sizeof(struct pollfd));
tools/virtio/vhost_net_test.c
38
struct pollfd fds;
tools/virtio/virtio-trace/trace-agent-ctl.c
50
struct pollfd poll_fd;
tools/virtio/virtio_test.c
41
struct pollfd fds[1];