Searched refs:poll (Results 1 - 25 of 546) sorted by relevance

1234567891011>>

/external/kernel-headers/original/uapi/linux/
H A Dpoll.h1 #include <asm/poll.h>
/external/kernel-headers/original/uapi/asm-arm/asm/
H A Dpoll.h1 #include <asm-generic/poll.h>
/external/kernel-headers/original/uapi/asm-arm64/asm/
H A Dpoll.h1 #include <asm-generic/poll.h>
/external/kernel-headers/original/uapi/asm-x86/asm/
H A Dpoll.h1 #include <asm-generic/poll.h>
/external/kernel-headers/original/uapi/asm-mips/asm/
H A Dpoll.h8 #include <asm-generic/poll.h>
/external/fio/os/windows/posix/include/sys/
H A Dpoll.h13 int poll(struct pollfd fds[], nfds_t nfds, int timeout);
/external/libusb/libusb/os/
H A Dpoll_posix.h7 #define usbi_poll poll
/external/valgrind/memcheck/tests/
H A Dbadpoll.c3 #include <sys/poll.h>
5 // At one point, poll()'s checking was not done accurately. This test
22 poll(ufds, 2, 200);
H A Dbadpoll.stderr.exp1 Syscall param poll(ufds.fd) points to uninitialised byte(s)
8 Syscall param poll(ufds.revents) points to unaddressable byte(s)
/external/curl/src/
H A Dtool_sleep.c29 # include <poll.h>
31 # include <sys/poll.h>
49 (void)poll((void *)0, 0, (int)ms);
/external/dhcpcd-6.8.2/compat/
H A Dpollts.h31 #include <poll.h>
H A Dpollts.c32 #include <poll.h>
58 r = poll(fds, nfds, timeout);
/external/python/cpython2/Lib/test/
H A Dtest_poll.py1 # Test case for the os.poll() function
15 select.poll
17 raise unittest.SkipTest, "select.poll not defined -- skipping test_poll"
30 # Basic functional test of poll object
31 # Create a bunch of pipe and test that poll works with them.
33 p = select.poll()
56 ready = p.poll()
63 ready = p.poll()
85 p = select.poll()
87 r = p.poll()
[all...]
/external/python/cpython3/Lib/test/
H A Dtest_poll.py1 # Test case for the os.poll() function
16 select.poll
18 raise unittest.SkipTest("select.poll not defined")
31 # Basic functional test of poll object
32 # Create a bunch of pipe and test that poll works with them.
34 p = select.poll()
57 ready = p.poll()
64 ready = p.poll()
84 p = select.poll()
86 r = p.poll()
[all...]
H A Dtest_devpoll.py25 # Basic functional test of poll object
26 # Create a bunch of pipe and test that poll works with them.
51 ready = p.poll()
58 ready = p.poll()
79 pollster.poll(-1)
80 self.assertRaises(OverflowError, pollster.poll, -2)
81 self.assertRaises(OverflowError, pollster.poll, -1 << 31)
82 self.assertRaises(OverflowError, pollster.poll, -1 << 64)
84 pollster.poll(0)
85 pollster.poll(
[all...]
/external/compiler-rt/test/asan/TestCases/Posix/
H A Dinit-order-pthread-create.cc24 void *poll(void *arg) { function
38 pthread_create(&p, 0, poll, &glob);
/external/ltp/testcases/kernel/syscalls/poll/
H A Dpoll02.c20 * Check that poll() timeouts correctly.
25 #include <sys/poll.h>
40 TEST(poll(pfds, 1, sleep_ms));
45 tst_res(TFAIL | TTERRNO, "poll() returned %li", TEST_RETURN);
67 .scall = "poll()",
/external/python/cpython2/Lib/test/subprocessdata/
H A Dsigchild_ignore.py7 # Also ensure poll() handles an errno.ECHILD appropriately.
10 while p.poll() is None:
15 raise RuntimeError('poll should have returned 0 within 30 seconds')
/external/python/cpython3/Lib/test/subprocessdata/
H A Dsigchild_ignore.py7 # Also ensure poll() handles an errno.ECHILD appropriately.
10 while p.poll() is None:
15 raise RuntimeError('poll should have returned 0 within 30 seconds')
/external/skia/tests/
H A DMessageBusTest.cpp29 inbox1.poll(&messages);
37 inbox1.poll(&messages);
42 inbox1.poll(&messages);
46 inbox2.poll(&messages);
/external/skqp/tests/
H A DMessageBusTest.cpp29 inbox1.poll(&messages);
37 inbox1.poll(&messages);
42 inbox1.poll(&messages);
46 inbox2.poll(&messages);
/external/guava/guava/src/com/google/common/collect/
H A DForwardingQueue.java59 public E poll() { method in class:ForwardingQueue
60 return delegate().poll();
109 * A sensible definition of {@link #poll} in terms of {@link #remove}. If you
110 * override {@link #remove}, you may wish to override {@link #poll} to forward
/external/netcat/
H A Datomicio.c32 #include <poll.h>
57 (void)poll(&pfd, 1, -1);
/external/chromium-trace/catapult/common/py_utils/py_utils/
H A Dxvfb.py22 returncode = xvfb_process.poll()
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DQueuePollTester.java30 * A generic JUnit test which tests {@code poll()} operations on a queue.
42 assertNull("emptyQueue.poll() should return null", getQueue().poll());
49 assertEquals("size1Queue.poll() should return first element",
50 samples.e0, getQueue().poll());
57 assertEquals("sizeManyQueue.poll() should return first element",
58 samples.e0, getQueue().poll());

Completed in 6292 milliseconds

1234567891011>>