/kernel/linux/linux-6.6/net/rds/ |
H A D | af_rds.c | 39 #include <linux/poll.h> 196 * RDS' poll is without a doubt the least intuitive part of the interface, 228 * "historical" reasons. Applications can also poll for in rds_poll() 647 .poll = rds_poll,
|
/kernel/linux/linux-6.6/net/rxrpc/ |
H A D | af_rxrpc.c | 16 #include <linux/poll.h> 948 .poll = rxrpc_poll,
|
/kernel/linux/linux-6.6/tools/testing/selftests/net/ |
H A D | csum.c | 80 #include <poll.h> 939 if (poll(&pfd, 1, tleft) == -1) in do_rx() 940 error(1, errno, "poll"); in do_rx()
|
H A D | txtimestamp.c | 38 #include <poll.h> 303 ret = poll(&pollfd, 1, cfg_poll_timeout); in __poll() 305 error(1, errno, "poll"); in __poll() 672 " -b: busy poll to read from error queue\n" in usage() 675 " -e: use level-triggered epoll() instead of poll()\n" in usage() 676 " -E: use event-triggered epoll() instead of poll()\n" in usage() 677 " -F: poll()/epoll() waits forever for an event\n" in usage()
|
/kernel/linux/linux-6.6/tools/testing/selftests/alsa/ |
H A D | mixer-test.c | 25 #include <poll.h> 198 err = poll(&(ctl->card->pollfd), 1, timeout); in wait_for_event() 200 ksft_print_msg("poll() failed for %s: %s (%d)\n", in wait_for_event()
|
/kernel/linux/linux-6.6/tools/testing/selftests/tpm2/ |
H A D | tpm2.py | 372 self.tpm_poll = select.poll() 386 self.tpm_poll.poll(10000)
|
/kernel/linux/linux-6.6/security/tomoyo/ |
H A D | common.h | 26 #include <linux/poll.h> 796 __poll_t (*poll)(struct file *file, poll_table *wait); member
|
/kernel/linux/linux-6.6/tools/testing/selftests/hid/ |
H A D | hid_bpf.c | 11 #include <poll.h> 249 ret = poll(pfds, 1, 100); in uhid_read_events_thread() 251 TH_LOG("Cannot poll for fds: %m"); in uhid_read_events_thread()
|
/kernel/linux/linux-6.6/sound/oss/dmasound/ |
H A D | dmasound_core.c | 183 #include <linux/poll.h> 1159 .poll = sq_poll,
|
/kernel/linux/linux-6.6/net/core/ |
H A D | netpoll.c | 168 work = napi->poll(napi, 0); in poll_one_napi() 169 WARN_ONCE(work, "%pS exceeded budget in poll\n", napi->poll); in poll_one_napi() 200 /* Some drivers will take the same locks in poll and xmit, in netpoll_poll_dev() 201 * we can't poll if local CPU is already in xmit. in netpoll_poll_dev() 371 "netpoll_send_skb_on_dev(): %s enabled interrupts in poll (%pS)\n", in __netpoll_send_skb()
|
/kernel/linux/linux-6.6/net/ieee802154/ |
H A D | socket.c | 419 .poll = datagram_poll, 981 .poll = datagram_poll,
|
/kernel/linux/linux-6.6/tools/firewire/ |
H A D | nosy-dump.c | 11 #include <poll.h> 979 poll(pollfds, 2, -1); in main()
|
/third_party/alsa-utils/seq/aplaymidi/ |
H A D | arecordmidi.c | 30 #include <poll.h> 894 if (poll(pfds, npfds, -1) < 0) in main()
|
/third_party/mesa3d/src/intel/perf/ |
H A D | intel_perf_query.c | 25 #include <poll.h> 972 if (poll(&pfd, 1, 0) < 0) { in intel_perf_oa_stream_ready()
|
/third_party/ltp/testcases/network/netstress/ |
H A D | netstress.c | 17 #include <poll.h> 211 int ret = poll(&pfd, 1, i->timeout); in sock_recv_poll() 292 /* Increase timeout in poll up to 3.2 sec */ in client_recv() 866 tst_brk(TBROK, "Invalid busy poll timeout'%s'", barg); in setup() 1008 {"b:", &barg, "Low latency busy poll timeout"},
|
/third_party/python/Lib/multiprocessing/ |
H A D | pool.py | 624 if not outqueue._reader.poll(): 676 while task_handler.is_alive() and inqueue._reader.poll():
|
/third_party/pulseaudio/src/modules/bluetooth/ |
H A D | backend-ofono.c | 25 #include <poll.h> 302 if (poll(&pfd, 1, 0) < 0) in socket_accept()
|
/kernel/linux/linux-5.10/tools/testing/selftests/seccomp/ |
H A D | seccomp_bpf.c | 52 #include <poll.h> 3359 EXPECT_GT(poll(&pollfd, 1, -1), 0); in TEST() 3378 EXPECT_GT(poll(&pollfd, 1, -1), 0); in TEST() 3781 EXPECT_GT(poll(&pollfd, 1, -1), 0); in TEST() 3789 EXPECT_GT(poll(&pollfd, 1, -1), 0); in TEST() 3874 EXPECT_GT(poll(&pollfd, 1, 2000), 0); in TEST() 3960 EXPECT_GT(poll(&pollfd, 1, 2000), 0); in TEST()
|
/foundation/communication/netstack/frameworks/js/napi/tls/src/ |
H A D | tls_socket.cpp | 24 #include <poll.h> 418 int ret = poll(fds, num, READ_TIMEOUT_MS); in ReadMessage() 424 NETSTACK_LOGE("Message poll errno is %{public}d %{public}s", errno, MakeErrnoString().c_str()); in ReadMessage() 428 NETSTACK_LOGD("tls recv poll timeout"); in ReadMessage() 1215 int ret = poll(fds, 1, SEND_POLL_TIMEOUT_MS); in SendRetry() 1220 NETSTACK_LOGE("send poll error, fd: %{public}d, errno: %{public}d", sockfd, errno); in SendRetry() 1223 NETSTACK_LOGI("send poll timeout, fd: %{public}d, errno: %{public}d", sockfd, errno); in SendRetry() 1254 int ret = poll(fds, num, DEFAULT_POLL_TIMEOUT_MS); in PollSend() 1259 NETSTACK_LOGE("send poll error, fd: %{public}d, errno: %{public}d", sockfd, errno); in PollSend() 1262 NETSTACK_LOGI("send poll timeou in PollSend() [all...] |
/kernel/linux/linux-5.10/drivers/gpio/ |
H A D | gpiolib-cdev.c | 22 #include <linux/poll.h> 1295 .poll = linereq_poll, 1645 .poll = lineevent_poll, 2360 .poll = lineinfo_watch_poll,
|
/kernel/linux/linux-5.10/drivers/net/wan/ |
H A D | cosa.c | 70 #include <linux/poll.h> 286 static unsigned int cosa_poll(struct file *file, poll_table *poll); 300 .poll = cosa_poll, 916 static __poll_t cosa_poll(struct file *file, poll_table *poll) in cosa_poll() 915 cosa_poll(struct file *file, poll_table *poll) cosa_poll() argument
|
/kernel/linux/linux-5.10/drivers/tty/ |
H A D | n_tty.c | 44 #include <linux/poll.h> 1927 static inline int input_available_p(struct tty_struct *tty, int poll) in input_available_p() argument 1930 int amt = poll && !TIME_CHAR(tty) && MIN_CHAR(tty) ? MIN_CHAR(tty) : 1; in input_available_p() 2440 * n_tty_poll - poll method for N_TTY 2443 * @wait: poll table 2445 * Called when the line discipline is asked to poll() for data or 2531 .poll = n_tty_poll,
|
/kernel/linux/linux-5.10/drivers/vhost/ |
H A D | scsi.c | 1386 poll.work); in vhost_scsi_ctl_handle_kick() 1426 poll.work); in vhost_scsi_evt_handle_kick() 1442 poll.work); in vhost_scsi_handle_kick() 1450 vhost_poll_flush(&vs->vqs[index].vq.poll); in vhost_scsi_flush_vq() 1470 /* Flush both the vhost poll and vhost work */ in vhost_scsi_flush()
|
/kernel/linux/linux-5.10/tools/perf/ |
H A D | builtin-top.c | 74 #include <poll.h> 501 poll(&stdin_poll, 1, -1); in perf_top__handle_keypress() 696 if (poll(&stdin_poll, 1, 0) > 0) in display_thread() 705 switch (poll(&stdin_poll, 1, delay_msecs)) { in display_thread()
|
/kernel/linux/linux-5.10/net/ipv4/ |
H A D | af_inet.c | 84 #include <linux/poll.h> 902 /* Hack to wake up other listeners, who can poll for in inet_shutdown() 925 /* Wake up anyone sleeping in poll. */ in inet_shutdown() 1046 .poll = tcp_poll, 1080 .poll = udp_poll, 1111 .poll = datagram_poll,
|