Home
last modified time | relevance | path

Searched refs:poll (Results 376 - 400 of 461) sorted by relevance

1...<<111213141516171819

/third_party/python/Lib/concurrent/futures/
H A Dprocess.py83 while self._reader.poll():
/third_party/toybox/toys/pending/
H A Dstrace.c504 SC(poll, "pdd"); in print_enter()
H A Dtraceroute.c232 if (!(res = poll(pfd, 1, tleft))) { in do_trace()
238 if (errno != EINTR) perror_exit("poll"); in do_trace()
/third_party/pulseaudio/src/modules/
H A Dmodule-tunnel-sink-new.c42 #include <pulsecore/poll.h>
H A Dmodule-tunnel-source-new.c42 #include <pulsecore/poll.h>
/third_party/mesa3d/src/vulkan/wsi/
H A Dwsi_common_display.c31 #include <poll.h>
74 bool valid; /* was found in most recent poll */
1273 int ret = poll(&pollfd, 1, -1); in wsi_display_wait_thread()
2092 int ret = poll(fds, nfds, -1); in udev_event_listener_thread()
/drivers/hdf_core/framework/core/adapter/vnode/src/
H A Dhdf_vnode_adapter.c750 .poll = HdfVNodeAdapterPoll, in HdfIoServiceAdapterPublish()
/drivers/peripheral/wlan/hostapd/interfaces/hdi_service/service_common/
H A Dhdi_hostapd_hal.c23 #include <poll.h>
/third_party/alsa-lib/src/mixer/
H A Dmixer.c693 * \brief get count of poll descriptors for mixer handle
695 * \return count of poll descriptors
715 * \brief get poll descriptors
717 * \param pfds array of poll descriptors
718 * \param space space in the poll descriptor array
744 * \brief get returned events from poll descriptors
746 * \param pfds array of poll descriptors
747 * \param nfds count of poll descriptors
788 err = poll(pfds, (unsigned int) count, timeout); in snd_mixer_wait()
/third_party/alsa-lib/src/pcm/
H A Dpcm_shm.c40 #include <poll.h>
/third_party/alsa-lib/test/
H A Dpcm.c30 static int period_event = 0; /* produce poll event after each period */
284 * Transfer method - write and wait for room in buffer using poll
292 poll(ufds, count, -1); in wait_for_poll()
312 printf("Invalid poll descriptors count\n"); in write_and_poll_loop()
322 printf("Unable to obtain poll descriptors for playback: %s\n", snd_strerror(err)); in write_and_poll_loop()
340 printf("Wait for poll failed\n"); in write_and_poll_loop()
378 printf("Wait for poll failed\n"); in write_and_poll_loop()
754 "-e,--pevent enable poll event after each period\n" in help()
/third_party/libuv/src/unix/
H A Dos390.c618 rv = poll(p, 1, 0); in uv__io_check_fd()
906 * of events in the callback were waiting when poll was called. in uv__io_poll()
914 * timeout == 0 (i.e. non-blocking poll) but there is no guarantee that the in uv__io_poll()
955 /* Interrupted by a signal. Update timeout and poll again. */ in uv__io_poll()
1033 return; /* Event loop should cycle now so don't poll again. */ in uv__io_poll()
H A Dprocess.c36 #include <poll.h>
H A Daix.c51 #include <sys/poll.h>
240 * of events in the callback were waiting when poll was called. in uv__io_poll()
250 * timeout == 0 (i.e. non-blocking poll) but there is no guarantee that the in uv__io_poll()
285 /* Interrupted by a signal. Update timeout and poll again. */ in uv__io_poll()
349 return; /* Event loop should cycle now so don't poll again. */ in uv__io_poll()
838 /* AHAFS wants someone to poll for it to start mointoring. in uv_fs_event_start()
1314 /* Remove the file descriptor from the poll set */ in uv__platform_invalidate_fd()
/third_party/node/deps/uv/src/unix/
H A Daix.c51 #include <sys/poll.h>
241 * timeout == 0 (i.e. non-blocking poll) but there is no guarantee that the in uv__io_poll()
276 /* Interrupted by a signal. Update timeout and poll again. */ in uv__io_poll()
338 return; /* Event loop should cycle now so don't poll again. */ in uv__io_poll()
822 /* AHAFS wants someone to poll for it to start mointoring. in uv_fs_event_start()
1298 /* Remove the file descriptor from the poll set */ in uv__platform_invalidate_fd()
H A Dos390.c611 rv = poll(p, 1, 0); in uv__io_check_fd()
898 * timeout == 0 (i.e. non-blocking poll) but there is no guarantee that the in uv__io_poll()
939 /* Interrupted by a signal. Update timeout and poll again. */ in uv__io_poll()
1015 return; /* Event loop should cycle now so don't poll again. */ in uv__io_poll()
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/
H A DRangeTree.java596 while ((ref = tidyUpQueue.poll()) != null) { in tidyUpInterningMap()
/third_party/rust/crates/either/src/
H A Dlib.rs1080 fn poll( in poll() functions
1084 for_both!(self.as_pin_mut(), inner => inner.poll(cx)) in poll()
/third_party/python/Lib/multiprocessing/
H A Dconnection.py252 def poll(self, timeout=0.0): member in _ConnectionBase
769 for attr in ('fileno', 'close', 'poll', 'recv_bytes', 'send_bytes'):
908 # poll/select have the advantage of not requiring any extra file
/third_party/pulseaudio/src/modules/rtp/
H A Dmodule-rtp-recv.c53 #include <pulsecore/poll.h>
218 pa_log("poll() signalled bad revents."); in rtpoll_work_cb()
/third_party/python/Lib/asyncio/
H A Dwindows_events.py926 returncode = self._proc.poll()
/third_party/pulseaudio/src/pulse/
H A Dmainloop.c43 #include <pulsecore/poll.h>
886 pa_log("poll(): %s", pa_cstrerror(errno)); in pa_mainloop_poll()
/third_party/python/Lib/test/test_asyncio/
H A Dtest_subprocess.py562 proc_returncode = proc.poll()
/third_party/python/Lib/test/
H A Dtest_asyncore.py134 # These constants should be present as long as poll is available
136 @unittest.skipUnless(hasattr(select, 'poll'), 'select.poll required')
362 asyncore.poll()
668 self.skipTest("poll may fail on macOS; see issue #28087")
821 @unittest.skipUnless(hasattr(select, 'poll'), 'select.poll required')
828 @unittest.skipUnless(hasattr(select, 'poll'), 'select.poll required')
835 @unittest.skipUnless(hasattr(select, 'poll'), 'selec
[all...]
/third_party/pulseaudio/src/modules/raop/
H A Draop-sink.c60 #include <pulsecore/poll.h>

Completed in 35 milliseconds

1...<<111213141516171819