HomeSort by relevance Sort by last modified time
    Searched refs:poll (Results 26 - 50 of 1639) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/dhcpcd-6.8.2/compat/
pollts.h 31 #include <poll.h>
  /libcore/ojluni/src/main/java/java/util/
Queue.java 69 * <td>{@link Queue#poll poll()}</td>
85 * {@link #poll()}. In a FIFO queue, all new elements are inserted at
98 * <p>The {@link #remove()} and {@link #poll()} methods remove and
103 * {@code poll()} methods differ only in their behavior when the
105 * while the {@code poll()} method returns {@code null}.
121 * used as a special return value by the {@code poll} method to
176 * from {@link #poll poll} only in that it throws an exception if this
190 E poll(); method in interface:Queue
    [all...]
AbstractQueue.java 48 * #poll poll}, and {@link #peek peek}, respectively, but throw
55 * Queue#peek}, {@link Queue#poll}, {@link Collection#size}, and
103 * from {@link #poll poll} only in that it throws an exception if this
106 * <p>This implementation returns the result of {@code poll}
113 E x = poll();
143 * <p>This implementation repeatedly invokes {@link #poll poll} until it
147 while (poll() != null
    [all...]
  /prebuilts/go/darwin-x86/src/net/
main_unix_test.go 9 import "internal/poll"
14 origClose = poll.CloseFunc
17 origAccept = poll.AcceptFunc
26 poll.CloseFunc = sw.Close
29 poll.AcceptFunc = sw.Accept
39 poll.CloseFunc = origClose
42 poll.AcceptFunc = origAccept
53 poll.CloseFunc(s)
main_cloexec_test.go 9 import "internal/poll"
18 origAccept4 = poll.Accept4Func
22 poll.Accept4Func = sw.Accept4
26 poll.Accept4Func = origAccept4
  /prebuilts/go/linux-x86/src/net/
main_unix_test.go 9 import "internal/poll"
14 origClose = poll.CloseFunc
17 origAccept = poll.AcceptFunc
26 poll.CloseFunc = sw.Close
29 poll.AcceptFunc = sw.Accept
39 poll.CloseFunc = origClose
42 poll.AcceptFunc = origAccept
53 poll.CloseFunc(s)
main_cloexec_test.go 9 import "internal/poll"
18 origAccept4 = poll.Accept4Func
22 poll.Accept4Func = sw.Accept4
26 poll.Accept4Func = origAccept4
  /bionic/tests/headers/posix/
poll_h.c 29 #include <poll.h>
52 FUNCTION(poll, int (*f)(struct pollfd[], nfds_t, int));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
poll.h 1 /* Compatibility definitions for System V `poll' interface.
25 /* Get the platform dependent bits of `poll'. */
26 #include <bits/poll.h>
42 int fd; /* File descriptor to poll. */
50 /* Poll the file descriptors described by the NFDS structures starting at
58 extern int poll (struct pollfd *__fds, nfds_t __nfds, int __timeout);
61 /* Like poll, but before waiting the threads signal mask is replaced
74 #endif /* sys/poll.h */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
poll.h 1 /* Compatibility definitions for System V `poll' interface.
25 /* Get the platform dependent bits of `poll'. */
26 #include <bits/poll.h>
42 int fd; /* File descriptor to poll. */
50 /* Poll the file descriptors described by the NFDS structures starting at
58 extern int poll (struct pollfd *__fds, nfds_t __nfds, int __timeout);
61 /* Like poll, but before waiting the threads signal mask is replaced
74 #endif /* sys/poll.h */
  /prebuilts/go/darwin-x86/src/internal/poll/
export_posix_test.go 8 // Since testing imports os and os imports internal/poll,
9 // the internal/poll tests can not be in package poll.
11 package poll package
export_windows_test.go 6 // Since testing imports os and os imports internal/poll,
7 // the internal/poll tests can not be in package poll.
9 package poll package
export_test.go 6 // Since testing imports os and os imports internal/poll,
7 // the internal/poll tests can not be in package poll.
9 package poll package
  /prebuilts/go/linux-x86/src/internal/poll/
export_posix_test.go 8 // Since testing imports os and os imports internal/poll,
9 // the internal/poll tests can not be in package poll.
11 package poll package
export_windows_test.go 6 // Since testing imports os and os imports internal/poll,
7 // the internal/poll tests can not be in package poll.
9 package poll package
export_test.go 6 // Since testing imports os and os imports internal/poll,
7 // the internal/poll tests can not be in package poll.
9 package poll package
  /external/python/cpython2/Lib/test/
test_poll.py 1 # 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/
test_poll.py 1 # 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...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_poll.py 1 # Test case for the os.poll() function
8 select.poll
10 raise unittest.SkipTest, "select.poll not defined -- skipping test_poll"
23 # Basic functional test of poll object
24 # Create a bunch of pipe and test that poll works with them.
26 p = select.poll()
49 ready = p.poll()
56 ready = p.poll()
78 p = select.poll()
80 r = p.poll()
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_poll.py 1 # Test case for the os.poll() function
8 select.poll
10 raise unittest.SkipTest, "select.poll not defined -- skipping test_poll"
23 # Basic functional test of poll object
24 # Create a bunch of pipe and test that poll works with them.
26 p = select.poll()
49 ready = p.poll()
56 ready = p.poll()
78 p = select.poll()
80 r = p.poll()
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_poll.py 1 # Test case for the os.poll() function
8 select.poll
10 raise unittest.SkipTest, "select.poll not defined -- skipping test_poll"
23 # Basic functional test of poll object
24 # Create a bunch of pipe and test that poll works with them.
26 p = select.poll()
49 ready = p.poll()
56 ready = p.poll()
78 p = select.poll()
80 r = p.poll()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_poll.py 1 # Test case for the os.poll() function
8 select.poll
10 raise unittest.SkipTest, "select.poll not defined -- skipping test_poll"
23 # Basic functional test of poll object
24 # Create a bunch of pipe and test that poll works with them.
26 p = select.poll()
49 ready = p.poll()
56 ready = p.poll()
78 p = select.poll()
80 r = p.poll()
    [all...]
  /tools/tradefederation/core/tests/src/com/android/tradefed/util/
ConditionPriorityBlockingQueueTest.java 42 * Test {@link ConditionPriorityBlockingQueue#poll()} when queue is empty.
45 assertNull(mQueue.poll());
55 assertNull(mQueue.poll());
69 assertNull(mQueue.poll());
73 * Test {@link ConditionPriorityBlockingQueue#poll()} when using FIFO ordering.
84 assertNull(fifoQueue.poll());
98 assertNull(mQueue.poll());
119 assertNull(mQueue.poll());
143 assertNull(mQueue.poll(new OneMatcher()));
144 assertEquals(two, mQueue.poll());
    [all...]
  /external/compiler-rt/test/asan/TestCases/Posix/
init-order-pthread-create.cc 24 void *poll(void *arg) { function
38 pthread_create(&p, 0, poll, &glob);
  /external/ltp/testcases/kernel/syscalls/poll/
poll02.c 20 * 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()",

Completed in 556 milliseconds

12 3 4 5 6 7 8 91011>>