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

1 23 4 5 6 7 8 91011>>

  /external/python/cpython2/Lib/test/subprocessdata/
sigchild_ignore.py 7 # 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/
sigchild_ignore.py 7 # 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/
MessageBusTest.cpp 29 inbox1.poll(&messages);
37 inbox1.poll(&messages);
42 inbox1.poll(&messages);
46 inbox2.poll(&messages);
  /external/skqp/tests/
MessageBusTest.cpp 29 inbox1.poll(&messages);
37 inbox1.poll(&messages);
42 inbox1.poll(&messages);
46 inbox2.poll(&messages);
  /frameworks/opt/bitmap/src/com/android/bitmap/
PooledCache.java 24 V poll(); method in interface:PooledCache
  /frameworks/support/paging/common/src/test/java/androidx/paging/
Executors.kt 33 var task = mTasks.poll()
36 task = mTasks.poll()
  /frameworks/support/paging/runtime/src/androidTest/java/androidx/paging/
TestExecutor.kt 32 var task = mTasks.poll()
35 task = mTasks.poll()
  /libcore/ojluni/src/main/java/sun/nio/fs/
AbstractWatchService.java 89 // re-queue in case there are other threads blocked in take/poll
96 public final WatchKey poll() { method in class:AbstractWatchService
98 WatchKey key = pendingKeys.poll();
104 public final WatchKey poll(long timeout, TimeUnit unit) method in class:AbstractWatchService
108 WatchKey key = pendingKeys.poll(timeout, unit);
156 // threads blocked in take/poll wakeup
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/subprocessdata/
sigchild_ignore.py 7 # 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')
  /prebuilts/gdb/linux-x86/lib/python2.7/test/subprocessdata/
sigchild_ignore.py 7 # 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')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/subprocessdata/
sigchild_ignore.py 7 # 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')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/subprocessdata/
sigchild_ignore.py 7 # 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/
test_devpoll.py 25 # 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(1
    [all...]
  /external/dhcpcd-6.8.2/compat/
pollts.c 32 #include <poll.h>
58 r = poll(fds, nfds, timeout);
  /external/guava/guava/src/com/google/common/collect/
ForwardingQueue.java 59 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/
atomicio.c 32 #include <poll.h>
57 (void)poll(&pfd, 1, -1);
  /external/valgrind/memcheck/tests/
badpoll.stderr.exp 1 Syscall param poll(ufds.fd) points to uninitialised byte(s)
8 Syscall param poll(ufds.revents) points to unaddressable byte(s)
  /frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/recents/model/
TaskResourceLoadQueue.java 43 return mQueue.poll();
  /hardware/qcom/display/msm8084/libqdutils/
qd_utils.h 42 #include <sys/poll.h>
  /packages/services/Car/tools/keventreader/server/
eventgatherer.h 24 #include <poll.h>
  /prebuilts/go/darwin-x86/src/runtime/
net_plan9.go 11 //go:linkname runtime_ignoreHangup internal/poll.runtime_ignoreHangup
16 //go:linkname runtime_unignoreHangup internal/poll.runtime_unignoreHangup
  /prebuilts/go/linux-x86/src/runtime/
net_plan9.go 11 //go:linkname runtime_ignoreHangup internal/poll.runtime_ignoreHangup
16 //go:linkname runtime_unignoreHangup internal/poll.runtime_unignoreHangup
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
QueuePollTester.java 30 * 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());
  /external/ltp/testcases/kernel/syscalls/poll/
poll01.c 22 * Check that poll() works for POLLOUT and POLLIN and that revents is set
29 #include <sys/poll.h>
43 TEST(poll(outfds, 1, -1));
46 tst_res(TFAIL | TTERRNO, "poll() POLLOUT failed");
51 tst_res(TFAIL | TTERRNO, "poll() failed to set POLLOUT");
55 tst_res(TPASS, "poll() POLLOUT");
69 TEST(poll(infds, 1, -1));
72 tst_res(TFAIL | TTERRNO, "poll() POLLIN failed");
77 tst_res(TFAIL, "poll() failed to set POLLIN");
82 tst_res(TPASS, "poll() POLLIN")
    [all...]
  /external/webrtc/webrtc/tools/loopback_test/
stat_tracker.js 62 function poll() { function in function:StatTracker
65 setTimeout(poll, pollInterval);
75 setTimeout(poll, pollInterval);

Completed in 2019 milliseconds

1 23 4 5 6 7 8 91011>>