Home
last modified time | relevance | path

Searched refs:poll (Results 451 - 475 of 2189) sorted by relevance

1...<<11121314151617181920>>...88

/kernel/linux/linux-6.6/drivers/gnss/
H A Dcore.c18 #include <linux/poll.h>
208 .poll = gnss_poll,
/kernel/linux/linux-6.6/drivers/dma-buf/
H A Dsync_file.c13 #include <linux/poll.h>
369 .poll = sync_file_poll,
/kernel/linux/linux-6.6/drivers/media/pci/ngene/
H A Dngene-dvb.c17 #include <linux/poll.h>
103 .poll = ts_poll,
/kernel/linux/linux-6.6/arch/x86/kernel/cpu/mce/
H A Ddev-mcelog.c15 #include <linux/poll.h>
331 .poll = mce_chrdev_poll,
/kernel/linux/linux-6.6/crypto/
H A Dalgif_skcipher.c198 .poll = af_alg_poll,
276 .poll = af_alg_poll,
/kernel/linux/linux-6.6/drivers/gpu/drm/
H A Ddrm_debugfs_crc.c32 #include <linux/poll.h>
364 .poll = crtc_crc_poll,
/kernel/linux/linux-6.6/drivers/hv/
H A Dhv_utils_transport.c10 #include <linux/poll.h>
290 hvt->fops.poll = hvt_op_poll; in hvutil_transport_init()
/kernel/linux/linux-6.6/drivers/hid/
H A Dhid-roccat.c24 #include <linux/poll.h>
411 .poll = roccat_poll,
/kernel/linux/linux-6.6/drivers/iio/common/hid-sensors/
H A Dhid-sensor-trigger.c187 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 Dtimerdev.c11 #include <linux/poll.h>
265 .poll = mISDN_poll,
/kernel/linux/linux-6.6/drivers/input/serio/
H A Dhp_sdc_mlc.c194 goto poll; in hp_sdc_mlc_cts()
202 poll: in hp_sdc_mlc_cts()
/kernel/linux/linux-6.6/tools/perf/bench/
H A Dsched-messaging.c27 #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 Dtest_unix_oob.c14 #include <sys/poll.h>
113 poll(pfds, 1, -1); in wait_for_data()
/kernel/linux/linux-6.6/tools/testing/selftests/net/
H A Dudpgso_bench_rx.c19 #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 Dvsock_perf.c18 #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 Daio_simple.c42 #include <sys/poll.h>
191 ret = poll(pfds, 1, 0); in handle_ep0()
/kernel/linux/linux-6.6/tools/hv/
H A Dhv_vss_daemon.c11 #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 Duhid-example.c42 #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 Dsctp.c46 #include <poll.h>
298 ret = poll(&p, 1, 100); in sctp_wait_fd()
/third_party/curl/lib/
H A Dselect.c36 #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 Dposix-poll.c25 /* 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 Dpec_listener.c12 #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 Dtouchpad-edge-detector.c13 #include <poll.h>
105 while (poll(&fds, 1, -1)) { in mainloop()
/third_party/lwip/src/include/lwip/
H A Dtcp.h99 /** 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 Dinternal.h56 # include <sys/poll.h>
58 # include <poll.h>

Completed in 14 milliseconds

1...<<11121314151617181920>>...88