Home
last modified time | relevance | path

Searched refs:pollfd (Results 1 – 25 of 92) sorted by relevance

1234

/linux-6.15/tools/leds/
H A Dled_hw_brightness_mon.c30 struct pollfd pollfd; in main() local
55 pollfd.fd = fd; in main()
56 pollfd.events = POLLPRI; in main()
59 ret = poll(&pollfd, 1, -1); in main()
73 ret = lseek(pollfd.fd, 0, SEEK_SET); in main()
/linux-6.15/tools/testing/selftests/mm/
H A Duffd-common.c508 struct pollfd pollfd[2]; in uffd_poll_thread() local
517 pollfd[0].fd = uffd; in uffd_poll_thread()
518 pollfd[0].events = POLLIN; in uffd_poll_thread()
519 pollfd[1].fd = pipefd[cpu*2]; in uffd_poll_thread()
520 pollfd[1].events = POLLIN; in uffd_poll_thread()
525 ret = poll(pollfd, 2, -1); in uffd_poll_thread()
531 if (pollfd[1].revents) { in uffd_poll_thread()
532 if (!(pollfd[1].revents & POLLIN)) in uffd_poll_thread()
534 if (read(pollfd[1].fd, &tmp_chr, 1) != 1) in uffd_poll_thread()
538 if (!(pollfd[0].revents & POLLIN)) in uffd_poll_thread()
[all …]
/linux-6.15/tools/testing/selftests/powerpc/tm/
H A Dtm-signal-pagefault.c88 struct pollfd pollfd; in fault_handler_thread() local
94 pollfd.fd = uffd; in fault_handler_thread()
95 pollfd.events = POLLIN; in fault_handler_thread()
96 if (poll(&pollfd, 1, -1) == -1) { in fault_handler_thread()
/linux-6.15/tools/lib/api/fd/
H A Darray.c26 size_t size = sizeof(struct pollfd) * nr_alloc; in fdarray__grow()
27 struct pollfd *entries = realloc(fda->entries, size); in fdarray__grow()
38 memset(&entries[fda->nr_alloc], 0, sizeof(struct pollfd) * nr); in fdarray__grow()
93 struct pollfd *entry; in fdarray__dup_entry_from()
H A Darray.h7 struct pollfd;
23 struct pollfd *entries;
/linux-6.15/include/linux/
H A Drestart_block.h14 struct pollfd;
50 struct pollfd __user *ufds;
/linux-6.15/tools/perf/util/
H A Dintel-tpebs.c267 struct pollfd pollfd = { .events = POLLIN, }; in tpebs_start() local
303 pollfd.fd = ack_fd[0]; in tpebs_start()
310 if (!poll(&pollfd, 1, 3000)) { in tpebs_start()
316 if (!(pollfd.revents & POLLIN)) { in tpebs_start()
/linux-6.15/tools/lib/perf/
H A Devlist.c32 fdarray__init(&evlist->pollfd, 64); in perf_evlist__init()
173 fdarray__exit(&evlist->pollfd); in perf_evlist__exit()
353 if (fdarray__available_entries(&evlist->pollfd) < nfds && in perf_evlist__alloc_pollfd()
354 fdarray__grow(&evlist->pollfd, nfds) < 0) in perf_evlist__alloc_pollfd()
363 int pos = fdarray__add(&evlist->pollfd, fd, revent | POLLERR | POLLHUP, flags); in perf_evlist__add_pollfd()
366 evlist->pollfd.priv[pos].ptr = ptr; in perf_evlist__add_pollfd()
384 return fdarray__filter(&evlist->pollfd, revents_and_mask, in perf_evlist__filter_pollfd()
390 return fdarray__poll(&evlist->pollfd, timeout); in perf_evlist__poll()
673 if (evlist->pollfd.entries == NULL && perf_evlist__alloc_pollfd(evlist) < 0) in perf_evlist__mmap_ops()
/linux-6.15/fs/
H A Dselect.c841 struct pollfd entries[] __counted_by(len);
853 static inline __poll_t do_pollfd(struct pollfd *pollfd, poll_table *pwait, in do_pollfd() argument
857 int fd = pollfd->fd; in do_pollfd()
868 filter = demangle_poll(pollfd->events) | EPOLLERR | EPOLLHUP; in do_pollfd()
900 struct pollfd * pfd, * pfd_end; in do_poll()
965 sizeof(struct pollfd))
992 sizeof(struct pollfd) * walk->len)) in do_sys_poll()
1016 struct pollfd *fds = walk->entries; in do_sys_poll()
1043 struct pollfd __user *ufds = restart_block->poll.ufds; in do_restart_poll()
1393 COMPAT_SYSCALL_DEFINE5(ppoll_time32, struct pollfd __user *, ufds, in COMPAT_SYSCALL_DEFINE5()
[all …]
/linux-6.15/tools/perf/
H A Dbuiltin-daemon.c447 struct pollfd pollfd = { in daemon_session__wait() local
456 int err = poll(&pollfd, 1, 1000); in daemon_session__wait()
486 struct pollfd pollfd = { in daemon__wait() local
495 int err = poll(&pollfd, 1, 1000); in daemon__wait()
514 struct pollfd pollfd = { .events = POLLIN, }; in daemon_session__control() local
556 pollfd.fd = ack; in daemon_session__control()
558 if (!poll(&pollfd, 1, 2000)) { in daemon_session__control()
563 if (!(pollfd.revents & POLLIN)) { in daemon_session__control()
H A Dbuiltin-ftrace.c626 struct pollfd pollfd = { in __cmd_ftrace() local
667 pollfd.fd = trace_fd; in __cmd_ftrace()
690 if (poll(&pollfd, 1, -1) < 0) in __cmd_ftrace()
693 if (pollfd.revents & POLLIN) { in __cmd_ftrace()
1005 struct pollfd pollfd = { in __cmd_latency() local
1015 pollfd.fd = trace_fd; in __cmd_latency()
1030 if (poll(&pollfd, 1, -1) < 0) in __cmd_latency()
1033 if (pollfd.revents & POLLIN) { in __cmd_latency()
H A Dbuiltin-record.c108 struct fdarray pollfd; member
1128 fdarray__init(&thread_data->pollfd, 64); in record__thread_data_init_pollfd()
1140 &evlist->core.pollfd); in record__thread_data_init_pollfd()
1164 fdarray__exit(&thread_data[t].pollfd); in record__free_thread_data()
1188 struct pollfd *e_entries = evlist->core.pollfd.entries; in record__update_evlist_pollfd_from_thread()
1189 struct pollfd *t_entries = thread_data->pollfd.entries; in record__update_evlist_pollfd_from_thread()
1685 struct fdarray *pollfd; in record__thread() local
1698 pollfd = &thread->pollfd; in record__thread()
1709 err = fdarray__poll(pollfd, -1); in record__thread()
1727 pollfd->entries[ctlfd_pos].fd = -1; in record__thread()
[all …]
/linux-6.15/tools/perf/bench/
H A Dsched-messaging.c82 struct pollfd pollfd = { .fd = wakefd, .events = POLLIN }; in ready() local
89 if (poll(&pollfd, 1, -1) != 1) in ready()
/linux-6.15/Documentation/userspace-api/media/mediactl/
H A Drequest-func-poll.rst22 .. c:function:: int poll( struct pollfd *ufds, unsigned int nfds, int timeout )
44 ``revents`` field of the respective struct :c:type:`pollfd`
/linux-6.15/Documentation/userspace-api/media/cec/
H A Dcec-func-poll.rst22 .. c:function:: int poll( struct pollfd *ufds, unsigned int nfds, int timeout )
44 ``revents`` field of the respective struct :c:type:`pollfd`
/linux-6.15/tools/testing/selftests/net/
H A Dtxtimestamp.c302 struct pollfd pollfd; in __poll() local
305 memset(&pollfd, 0, sizeof(pollfd)); in __poll()
306 pollfd.fd = fd; in __poll()
307 ret = poll(&pollfd, 1, cfg_poll_timeout); in __poll()
/linux-6.15/include/uapi/asm-generic/
H A Dpoll.h36 struct pollfd { struct
/linux-6.15/tools/testing/selftests/seccomp/
H A Dseccomp_bpf.c3380 struct pollfd pollfd; in TEST() local
3435 pollfd.fd = listener; in TEST()
3454 pollfd.fd = listener; in TEST()
3839 struct pollfd pollfd; in TEST() local
3867 pollfd.fd = listener; in TEST()
3875 pollfd.fd = listener; in TEST()
3923 struct pollfd pollfd; in TEST() local
3963 pollfd.fd = 200; in TEST()
3964 pollfd.events = POLLHUP; in TEST()
4034 struct pollfd pollfd; in TEST() local
[all …]
/linux-6.15/tools/testing/selftests/filesystems/epoll/
H A Depoll_wakeup_test.c63 struct pollfd pfd; in waiter_entry1ap()
90 struct pollfd pfd; in waiter_entry1op()
117 struct pollfd pfd; in waiter_entry2ap()
305 struct pollfd pfd; in TEST()
344 struct pollfd pfd; in TEST()
384 struct pollfd pfd; in TEST()
430 struct pollfd pfd; in TEST()
1006 struct pollfd pfd; in TEST()
1054 struct pollfd pfd; in TEST()
1102 struct pollfd pfd; in TEST()
[all …]
/linux-6.15/arch/um/drivers/
H A Dubd_user.c26 static struct pollfd kernel_pollfd;
/linux-6.15/tools/testing/selftests/ftrace/
H A Dpoll.c24 struct pollfd pfd = {.events = POLLIN}; in main()
/linux-6.15/tools/testing/selftests/cgroup/
H A Dwait_inotify.c33 struct pollfd fds = { .events = POLLIN, }; in main()
/linux-6.15/tools/testing/selftests/pidfd/
H A Dpidfd_poll_test.c28 struct pollfd fds; in main()
/linux-6.15/tools/virtio/virtio-trace/
H A Dtrace-agent-ctl.c50 struct pollfd poll_fd; in wait_order()
/linux-6.15/tools/gpio/
H A Dgpio-watch.c27 struct pollfd pfd; in main()

1234