Home
last modified time | relevance | path

Searched refs:poll (Results 76 - 100 of 2248) sorted by relevance

12345678910>>...90

/kernel/linux/linux-5.10/drivers/media/mc/
H A Dmc-devnode.c95 struct poll_table_struct *poll) in media_poll()
101 if (!devnode->fops->poll) in media_poll()
103 return devnode->fops->poll(filp, poll); in media_poll()
207 .poll = media_poll,
94 media_poll(struct file *filp, struct poll_table_struct *poll) media_poll() argument
/kernel/linux/linux-5.10/drivers/mfd/
H A Darizona-irq.c99 bool poll; in arizona_irq_thread() local
110 poll = false; in arizona_irq_thread()
148 poll = true; in arizona_irq_thread()
151 poll = true; in arizona_irq_thread()
153 } while (poll); in arizona_irq_thread()
/kernel/linux/linux-6.6/drivers/mfd/
H A Darizona-irq.c99 bool poll; in arizona_irq_thread() local
110 poll = false; in arizona_irq_thread()
148 poll = true; in arizona_irq_thread()
151 poll = true; in arizona_irq_thread()
153 } while (poll); in arizona_irq_thread()
/kernel/linux/linux-6.6/drivers/media/mc/
H A Dmc-devnode.c95 struct poll_table_struct *poll) in media_poll()
101 if (!devnode->fops->poll) in media_poll()
103 return devnode->fops->poll(filp, poll); in media_poll()
207 .poll = media_poll,
94 media_poll(struct file *filp, struct poll_table_struct *poll) media_poll() argument
/third_party/python/Lib/multiprocessing/
H A Dprocess.py64 if (child_popen := p._popen) and child_popen.poll() is not None:
165 returncode = self._popen.poll()
180 if self._popen.poll() is None:
232 return self._popen.poll()
270 exitcode = self._popen.poll()
/kernel/linux/linux-5.10/drivers/vhost/
H A Dnet.c134 struct vhost_poll poll[VHOST_NET_VQ_MAX]; member
405 vhost_poll_queue(&vq->poll); in vhost_zerocopy_callback()
426 struct vhost_poll *poll = n->poll + (nvq - n->vqs); in vhost_net_disable_vq() local
429 vhost_poll_stop(poll); in vhost_net_disable_vq()
437 struct vhost_poll *poll = n->poll + (nvq - n->vqs); in vhost_net_enable_vq() local
444 return vhost_poll_start(poll, sock->file); in vhost_net_enable_vq()
511 vhost_poll_queue(&vq->poll); in vhost_net_busy_poll_try_queue()
514 vhost_poll_queue(&vq->poll); in vhost_net_busy_poll_try_queue()
[all...]
/kernel/linux/linux-5.10/include/media/
H A Dmedia-devnode.h19 #include <linux/poll.h>
39 * @poll: pointer to the function that implements poll() syscall
51 __poll_t (*poll) (struct file *, struct poll_table_struct *); member
/kernel/linux/linux-5.10/include/linux/
H A Dposix-clock.h12 #include <linux/poll.h>
36 * @poll: Optional character device poll method
58 __poll_t (*poll) (struct posix_clock *pc, member
/kernel/linux/linux-5.10/tools/leds/
H A Dled_hw_brightness_mon.c17 #include <poll.h>
50 * but it is required to avoid spurious poll notifications in in main()
59 ret = poll(&pollfd, 1, -1); in main()
61 printf("Failed to poll %s file (%d)\n", in main()
/kernel/linux/linux-5.10/drivers/rpmsg/
H A Drpmsg_internal.h16 #include <linux/poll.h>
49 * @poll: see @rpmsg_poll(), optional
67 __poll_t (*poll)(struct rpmsg_endpoint *ept, struct file *filp, member
/kernel/linux/linux-6.6/include/linux/
H A Dposix-clock.h12 #include <linux/poll.h>
36 * @poll: Optional character device poll method
58 __poll_t (*poll) (struct posix_clock *pc, member
/kernel/linux/linux-6.6/include/media/
H A Dmedia-devnode.h19 #include <linux/poll.h>
39 * @poll: pointer to the function that implements poll() syscall
51 __poll_t (*poll) (struct file *, struct poll_table_struct *); member
/kernel/linux/linux-6.6/tools/leds/
H A Dled_hw_brightness_mon.c17 #include <poll.h>
50 * but it is required to avoid spurious poll notifications in in main()
59 ret = poll(&pollfd, 1, -1); in main()
61 printf("Failed to poll %s file (%d)\n", in main()
/third_party/curl/lib/
H A Dselect.h30 #include <poll.h>
32 #include <sys/poll.h>
/third_party/glfw/src/
H A Dposix_poll.c59 const int result = poll(fds, count, milliseconds); in _glfwPollPOSIX()
75 const int result = poll(fds, count, -1); in _glfwPollPOSIX()
/third_party/libuv/test/
H A Dtest-embed.c29 #include <poll.h>
68 rc = poll(&p, 1, uv_backend_timeout(loop)); in TEST_IMPL()
/third_party/musl/porting/linux/user/include/fortify/
H A Dpoll.h17 #error "Never include this file directly; instead, include <poll.h>"
34 int poll(struct pollfd* const fds __DIAGNOSE_PASS_OBJECT_SIZE, nfds_t fd_amount, int timeout)
37 "in call to 'poll', " FD_COUNT_LARGE_GIVEN_BUFFER)
46 return __DIAGNOSE_CALL_BYPASSING_FORTIFY(poll)(fds, fd_amount, timeout);
/third_party/musl/include/fortify/linux/
H A Dpoll.h17 #error "Never include this file directly; instead, include <poll.h>"
34 int poll(struct pollfd* const fds __DIAGNOSE_PASS_OBJECT_SIZE, nfds_t fd_amount, int timeout)
37 "in call to 'poll', " FD_COUNT_LARGE_GIVEN_BUFFER)
46 return __DIAGNOSE_CALL_BYPASSING_FORTIFY(poll)(fds, fd_amount, timeout);
/kernel/linux/linux-5.10/drivers/staging/comedi/drivers/
H A Dpcl816.c107 unsigned int ai_poll_ptr; /* how many sampes transfer poll */
456 unsigned int poll; in pcl816_ai_poll() local
461 poll = comedi_isadma_poll(dma); in pcl816_ai_poll()
462 poll = comedi_bytes_to_samples(s, poll); in pcl816_ai_poll()
463 if (poll > devpriv->ai_poll_ptr) { in pcl816_ai_poll()
467 poll - devpriv->ai_poll_ptr); in pcl816_ai_poll()
469 devpriv->ai_poll_ptr = poll; in pcl816_ai_poll()
642 s->poll = pcl816_ai_poll; in pcl816_attach()
/kernel/linux/linux-6.6/drivers/comedi/drivers/
H A Dpcl816.c105 unsigned int ai_poll_ptr; /* how many sampes transfer poll */
454 unsigned int poll; in pcl816_ai_poll() local
459 poll = comedi_isadma_poll(dma); in pcl816_ai_poll()
460 poll = comedi_bytes_to_samples(s, poll); in pcl816_ai_poll()
461 if (poll > devpriv->ai_poll_ptr) { in pcl816_ai_poll()
465 poll - devpriv->ai_poll_ptr); in pcl816_ai_poll()
467 devpriv->ai_poll_ptr = poll; in pcl816_ai_poll()
640 s->poll = pcl816_ai_poll; in pcl816_attach()
/kernel/linux/linux-5.10/drivers/staging/octeon/
H A Dethernet-mdio.c95 if (priv->poll) in cvm_oct_adjust_link()
96 priv->poll(dev); in cvm_oct_adjust_link()
117 priv->poll = NULL; in cvm_oct_common_stop()
/kernel/linux/linux-6.6/drivers/staging/octeon/
H A Dethernet-mdio.c95 if (priv->poll) in cvm_oct_adjust_link()
96 priv->poll(dev); in cvm_oct_adjust_link()
117 priv->poll = NULL; in cvm_oct_common_stop()
/kernel/linux/linux-5.10/drivers/net/ethernet/qlogic/qlcnic/
H A Dqlcnic_minidump.c447 "Timed out, aborting poll CRB\n"); in qlcnic_dump_ctrl()
910 struct __pollrdmwr *poll = &entry->region.pollrdmwr; in qlcnic_read_pollrdmwr() local
913 poll_wait = poll->poll_wait; in qlcnic_read_pollrdmwr()
915 qlcnic_ind_wr(adapter, poll->addr1, poll->val1); in qlcnic_read_pollrdmwr()
919 data = qlcnic_ind_rd(adapter, poll->addr1); in qlcnic_read_pollrdmwr()
920 if ((data & poll->poll_mask) != 0) in qlcnic_read_pollrdmwr()
932 data = qlcnic_ind_rd(adapter, poll->addr2) & poll->mod_mask; in qlcnic_read_pollrdmwr()
933 qlcnic_ind_wr(adapter, poll in qlcnic_read_pollrdmwr()
[all...]
/kernel/linux/linux-6.6/drivers/net/ethernet/qlogic/qlcnic/
H A Dqlcnic_minidump.c447 "Timed out, aborting poll CRB\n"); in qlcnic_dump_ctrl()
910 struct __pollrdmwr *poll = &entry->region.pollrdmwr; in qlcnic_read_pollrdmwr() local
913 poll_wait = poll->poll_wait; in qlcnic_read_pollrdmwr()
915 qlcnic_ind_wr(adapter, poll->addr1, poll->val1); in qlcnic_read_pollrdmwr()
919 data = qlcnic_ind_rd(adapter, poll->addr1); in qlcnic_read_pollrdmwr()
920 if ((data & poll->poll_mask) != 0) in qlcnic_read_pollrdmwr()
932 data = qlcnic_ind_rd(adapter, poll->addr2) & poll->mod_mask; in qlcnic_read_pollrdmwr()
933 qlcnic_ind_wr(adapter, poll in qlcnic_read_pollrdmwr()
[all...]
/kernel/linux/linux-6.6/drivers/vhost/
H A Dnet.c135 struct vhost_poll poll[VHOST_NET_VQ_MAX]; member
408 vhost_poll_queue(&vq->poll); in vhost_zerocopy_callback()
429 struct vhost_poll *poll = n->poll + (nvq - n->vqs); in vhost_net_disable_vq() local
432 vhost_poll_stop(poll); in vhost_net_disable_vq()
440 struct vhost_poll *poll = n->poll + (nvq - n->vqs); in vhost_net_enable_vq() local
447 return vhost_poll_start(poll, sock->file); in vhost_net_enable_vq()
514 vhost_poll_queue(&vq->poll); in vhost_net_busy_poll_try_queue()
517 vhost_poll_queue(&vq->poll); in vhost_net_busy_poll_try_queue()
[all...]

Completed in 15 milliseconds

12345678910>>...90