/kernel/linux/linux-6.6/drivers/comedi/ |
H A D | drivers.c | 742 if (!s->poll) in __comedi_device_postconfig() 743 s->poll = poll_invalid; in __comedi_device_postconfig()
|
/kernel/linux/linux-6.6/kernel/events/ |
H A D | ring_buffer.c | 15 #include <linux/poll.h> 22 atomic_set(&handle->rb->poll, EPOLLIN); in perf_output_wakeup()
|
/kernel/linux/linux-6.6/drivers/dma/idxd/ |
H A D | cdev.c | 12 #include <linux/poll.h> 440 .poll = idxd_cdev_poll,
|
/kernel/linux/linux-6.6/drivers/firewire/ |
H A D | nosy.c | 19 #include <linux/poll.h> 398 .poll = nosy_poll,
|
/kernel/linux/linux-6.6/drivers/net/wireless/ralink/rt2x00/ |
H A D | rt2x00debug.c | 16 #include <linux/poll.h> 291 .poll = rt2x00debug_poll_queue_dump,
|
/kernel/linux/linux-6.6/drivers/hid/ |
H A D | hidraw.c | 22 #include <linux/poll.h> 510 .poll = hidraw_poll,
|
/kernel/linux/linux-6.6/drivers/macintosh/ |
H A D | adb.c | 406 if ((adb_controller == NULL)||(adb_controller->poll == NULL)) in adb_poll() 408 adb_controller->poll(); in adb_poll()
|
/kernel/linux/linux-6.6/tools/testing/selftests/net/ |
H A D | msg_zerocopy.c | 45 #include <poll.h> 150 ret = poll(&pfd, 1, cfg_waittime_ms); in do_poll() 152 error(1, errno, "poll"); in do_poll()
|
/kernel/linux/linux-6.6/sound/core/ |
H A D | info.c | 196 if (entry->c.ops->poll) in snd_info_entry_poll() 197 return entry->c.ops->poll(entry, in snd_info_entry_poll()
|
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/ |
H A D | test_flow_dissector.c | 23 #include <poll.h> 483 ret = poll(&pfd, 1, timeout); in do_poll() 485 error(1, errno, "poll"); in do_poll() 487 error(1, errno, "poll: unexpected event 0x%x\n", pfd.revents); in do_poll()
|
/third_party/eudev/src/libudev/ |
H A D | libudev-monitor.c | 27 #include <poll.h> 530 * The monitor socket is by default set to NONBLOCK. A variant of poll() on 660 rc = poll(pfd, 1, 0); in udev_monitor_receive_device()
|
/third_party/ffmpeg/libavcodec/ |
H A D | v4l2_context.c | 29 #include <poll.h> 318 ret = poll(&pfd, 1, timeout); in v4l2_dequeue_v4l2buf()
|
/third_party/ffmpeg/libavformat/ |
H A D | rtpproto.c | 43 #include <poll.h> 404 n = poll(p, 2, poll_delay); in rtp_read()
|
/third_party/alsa-utils/seq/aseqdump/ |
H A D | aseqdump.c | 29 #include <poll.h> 783 if (poll(pfds, npfds, -1) < 0) in main()
|
/third_party/NuttX/drivers/usbdev/gadget/fconfig/src/ |
H A D | usbd_generic_epfile.c | 37 #include <poll.h> 588 .poll = generic_epfile_handle_poll,
|
/third_party/node/deps/v8/tools/ |
H A D | v8_presubmit.py | 93 if out_line == '' and process.poll() != None: 123 if out_line == '' and process.poll() != None:
|
/third_party/nghttp2/examples/ |
H A D | client.c | 52 #include <poll.h> 604 int nfds = poll(pollfds, npollfds, -1); in fetch_uri() 606 dief("poll", strerror(errno)); in fetch_uri()
|
/third_party/lwip/src/include/lwip/ |
H A D | sockets.h | 492 /* poll-related defines and types */ 555 #define lwip_poll poll 672 #define poll(fds,nfds,timeout) lwip_poll(fds,nfds,timeout) macro
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/egl/gbm/ |
H A D | DisplayGbm.cpp | 12 #include <poll.h> 508 if (poll(&pfd, 1, 0) < 0) in presentScreen() 510 WARN() << "poll failed: " << errno << " " << strerror(errno); in presentScreen()
|
/third_party/skia/third_party/externals/microhttpd/src/testspdy/ |
H A D | test_new_connection.c | 91 #include <poll.h> 710 int nfds = poll(pollfds, npollfds, -1); in fetch_uri() 712 dief("poll", strerror(errno)); in fetch_uri()
|
H A D | test_notls.c | 73 #include <poll.h> 648 int nfds = poll(pollfds, npollfds, -1); in fetch_uri() 650 dief("poll", strerror(errno)); in fetch_uri()
|
H A D | test_request_response.c | 73 #include <poll.h> 698 int nfds = poll(pollfds, npollfds, -1); in fetch_uri() 700 dief("poll", strerror(errno)); in fetch_uri()
|
/kernel/linux/linux-5.10/drivers/xen/events/ |
H A D | events_base.c | 1997 struct sched_poll poll; in xen_poll_irq_timeout() local 1999 poll.nr_ports = 1; in xen_poll_irq_timeout() 2000 poll.timeout = timeout; in xen_poll_irq_timeout() 2001 set_xen_guest_handle(poll.ports, &evtchn); in xen_poll_irq_timeout() 2003 if (HYPERVISOR_sched_op(SCHEDOP_poll, &poll) != 0) in xen_poll_irq_timeout()
|
/kernel/linux/linux-6.6/drivers/xen/events/ |
H A D | events_base.c | 2057 struct sched_poll poll; in xen_poll_irq_timeout() local 2059 poll.nr_ports = 1; in xen_poll_irq_timeout() 2060 poll.timeout = timeout; in xen_poll_irq_timeout() 2061 set_xen_guest_handle(poll.ports, &evtchn); in xen_poll_irq_timeout() 2063 if (HYPERVISOR_sched_op(SCHEDOP_poll, &poll) != 0) in xen_poll_irq_timeout()
|
/third_party/lwip/src/core/ |
H A D | tcp.c | 51 * received), lwIP will repeatedly poll the application by calling a 372 if ((pcb->poll != NULL) && (ret != 0)) { in tcp_slow_tmr_tick() 1596 /* We check if we should poll the connection. */ 2271 * be called to poll the application. The interval is specified in 2277 * received), lwIP will repeatedly poll the application by calling a 2286 tcp_poll(struct tcp_pcb *pcb, tcp_poll_fn poll, u8_t interval) argument 2291 LWIP_ASSERT("invalid socket state for poll", pcb->state != LISTEN); 2294 pcb->poll = poll; 2296 LWIP_UNUSED_ARG(poll); [all...] |