/kernel/linux/linux-6.6/drivers/gnss/ |
H A D | core.c | 18 #include <linux/poll.h> 208 .poll = gnss_poll,
|
/kernel/linux/linux-6.6/drivers/dma-buf/ |
H A D | sync_file.c | 13 #include <linux/poll.h> 369 .poll = sync_file_poll,
|
/kernel/linux/linux-6.6/drivers/media/pci/ngene/ |
H A D | ngene-dvb.c | 17 #include <linux/poll.h> 103 .poll = ts_poll,
|
/kernel/linux/linux-6.6/arch/x86/kernel/cpu/mce/ |
H A D | dev-mcelog.c | 15 #include <linux/poll.h> 331 .poll = mce_chrdev_poll,
|
/kernel/linux/linux-6.6/crypto/ |
H A D | algif_skcipher.c | 198 .poll = af_alg_poll, 276 .poll = af_alg_poll,
|
/kernel/linux/linux-6.6/drivers/gpu/drm/ |
H A D | drm_debugfs_crc.c | 32 #include <linux/poll.h> 364 .poll = crtc_crc_poll,
|
/kernel/linux/linux-6.6/drivers/hv/ |
H A D | hv_utils_transport.c | 10 #include <linux/poll.h> 290 hvt->fops.poll = hvt_op_poll; in hvutil_transport_init()
|
/kernel/linux/linux-6.6/drivers/hid/ |
H A D | hid-roccat.c | 24 #include <linux/poll.h> 411 .poll = roccat_poll,
|
/kernel/linux/linux-6.6/drivers/iio/common/hid-sensors/ |
H A D | hid-sensor-trigger.c | 187 sensor_hub_set_feature(attrb->hsdev, attrb->poll.report_id, in hid_sensor_set_power_work() 188 attrb->poll.index, in hid_sensor_set_power_work()
|
/kernel/linux/linux-6.6/drivers/isdn/mISDN/ |
H A D | timerdev.c | 11 #include <linux/poll.h> 265 .poll = mISDN_poll,
|
/kernel/linux/linux-6.6/drivers/input/serio/ |
H A D | hp_sdc_mlc.c | 194 goto poll; in hp_sdc_mlc_cts() 202 poll: in hp_sdc_mlc_cts()
|
/kernel/linux/linux-6.6/tools/perf/bench/ |
H A D | sched-messaging.c | 27 #include <poll.h> 81 if (poll(&pollfd, 1, -1) != 1) in ready() 82 err(EXIT_FAILURE, "poll"); in ready()
|
/kernel/linux/linux-6.6/tools/testing/selftests/net/af_unix/ |
H A D | test_unix_oob.c | 14 #include <sys/poll.h> 113 poll(pfds, 1, -1); in wait_for_data()
|
/kernel/linux/linux-6.6/tools/testing/selftests/net/ |
H A D | udpgso_bench_rx.c | 19 #include <poll.h> 102 ret = poll(&pfd, 1, 10); in do_poll() 106 error(1, errno, "poll"); in do_poll() 117 /* no events and more time to wait, do poll again */ in do_poll() 121 error(1, errno, "poll: 0x%x expected 0x%x\n", in do_poll()
|
/kernel/linux/linux-6.6/tools/testing/vsock/ |
H A D | vsock_perf.c | 18 #include <poll.h> 206 if (poll(&fds, 1, -1) < 0) in run_receiver() 207 error("poll"); in run_receiver() 210 fprintf(stderr, "'poll()' error\n"); in run_receiver()
|
/kernel/linux/linux-6.6/tools/usb/ffs-aio-example/simple/device_app/ |
H A D | aio_simple.c | 42 #include <sys/poll.h> 191 ret = poll(pfds, 1, 0); in handle_ep0()
|
/kernel/linux/linux-6.6/tools/hv/ |
H A D | hv_vss_daemon.c | 11 #include <sys/poll.h> 284 if (poll(&pfd, 1, -1) < 0) { in main() 285 syslog(LOG_ERR, "poll failed; error:%d %s", errno, strerror(errno)); in main()
|
/kernel/linux/linux-6.6/samples/uhid/ |
H A D | uhid-example.c | 42 #include <poll.h> 436 ret = poll(pfds, 2, -1); in main() 438 fprintf(stderr, "Cannot poll for fds: %m\n"); in main()
|
/third_party/ffmpeg/libavformat/ |
H A D | sctp.c | 46 #include <poll.h> 298 ret = poll(&p, 1, 100); in sctp_wait_fd()
|
/third_party/curl/lib/ |
H A D | select.c | 36 #error "We can't compile without select() or poll() support." 55 * WinSock select() and poll() timeout mechanisms need a valid 94 r = poll(NULL, 0, (int)timeout_ms); in Curl_wait_ms() 104 /* make EINTR from select or poll not a "lethal" error */ in Curl_wait_ms() 170 * Wait for read or write events on a set of file descriptors. It uses poll() 171 * when a fine poll() is available, in order to avoid limits with FD_SETSIZE, 260 * This is a wrapper around poll(). If poll() does not exist, then 317 r = poll(ufds, nfds, pending_ms); in Curl_poll() 320 /* make EINTR from select or poll no in Curl_poll() [all...] |
/third_party/libuv/src/unix/ |
H A D | posix-poll.c | 25 /* POSIX defines poll() as a portable way to wait on file descriptors. 27 * events to pass as the first argument to poll(). 54 /* Allocate or dynamically resize our poll fds array. */ 77 /* Primitive swap operation on poll fds array elements. */ 85 /* Add a watcher's fd to our poll fds array with its pending events. */ 106 /* Remove a watcher's fd from our poll fds array. */ 158 /* Take queued watchers and add their fds to our poll fds array. */ in uv__io_poll() 174 /* Prepare a set of signals to block around poll(), if any. */ in uv__io_poll() 193 /* Loop calls to poll() and processing of results. If we get some in uv__io_poll() 194 * results from poll() bu in uv__io_poll() [all...] |
/third_party/ltp/testcases/kernel/connectors/pec/ |
H A D | pec_listener.c | 12 #include <sys/poll.h> 320 ret = poll(&pfd, 1, -1); in main() 323 fprintf(stderr, "failed to poll\n"); in main()
|
/third_party/libevdev/tools/ |
H A D | touchpad-edge-detector.c | 13 #include <poll.h> 105 while (poll(&fds, 1, -1)) { in mainloop()
|
/third_party/lwip/src/include/lwip/ |
H A D | tcp.h | 99 /** Function prototype for tcp poll callback functions. Called periodically as 358 tcp_poll_fn poll; member 425 void tcp_poll (struct tcp_pcb *pcb, tcp_poll_fn poll, u8_t interval);
|
/third_party/node/deps/uv/src/unix/ |
H A D | internal.h | 56 # include <sys/poll.h> 58 # include <poll.h>
|