HomeSort by relevance Sort by last modified time
    Searched full:poll (Results 76 - 100 of 570) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/tcpdump/
print-pgm.c 100 PGM_POLL = 1, /* POLL Request */
101 PGM_POLR = 2, /* POLL Response */
283 struct pgm_poll *poll; local
285 poll = (struct pgm_poll *)(pgm + 1);
286 TCHECK(*poll);
287 (void)printf("POLL seq %u round %u",
288 EXTRACT_32BITS(&poll->pgmp_seq),
289 EXTRACT_16BITS(&poll->pgmp_round));
290 bp = (u_char *) (poll + 1);
  /dalvik/libcore/luni/src/main/java/java/util/
WeakHashMap.java 174 // cannot poll() as that would change the expectedModCount
260 while (referenceQueue.poll() != null) {
293 poll(); method
351 poll();
432 poll();
473 poll();
496 poll();
528 poll();
567 void poll() {
569 while ((toRemove = (Entry<K, V>) referenceQueue.poll()) != null)
    [all...]
Queue.java 31 * {@code poll} returns {@code null} to indicate that there is no element left
61 public E poll(); method in interface:Queue
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
CompletionService.java 80 Future<V> poll(); method in interface:CompletionService
96 Future<V> poll(long timeout, TimeUnit unit) throws InterruptedException; method in interface:CompletionService
BlockingQueue.java 50 * <td>{@link #poll poll()}</td>
52 * <td>{@link #poll(long, TimeUnit) poll(time, unit)}</td>
67 * <tt>poll</tt> operations.
248 E poll(long timeout, TimeUnit unit) method in interface:BlockingQueue
TimeUnit.java 237 * <p>For example, you could implement a blocking <tt>poll</tt>
238 * method (see {@link BlockingQueue#poll BlockingQueue.poll})
241 * <pre> public synchronized Object poll(long timeout, TimeUnit unit) throws InterruptedException {
  /dalvik/libcore/luni/src/main/java/java/lang/ref/
ReferenceQueue.java 50 public synchronized Reference<? extends T> poll() { method in class:ReferenceQueue
118 return poll();
  /dalvik/libcore/luni/src/test/java/tests/api/java/lang/ref/
ReferenceTest.java 144 assertTrue("Not properly enqueued.", rq.poll().get() == obj);
148 && (rq.poll() == null));
156 assertTrue("Not properly enqueued2.", rq.poll().get() == obj);
160 && (rq.poll() == null));
165 assertNull("Not properly enqueued3.", rq.poll().get());
169 && (rq.poll() == null));
231 ref = rq.poll();
378 rq.poll();
  /external/bluetooth/glib/tests/
timeloop-basic.c 11 #include <sys/poll.h>
190 poll (poll_fds, n_active_children, -1);
  /external/dbus/test/name-test/
test-threads-init.c 46 are we hit the block in poll bug */
51 to the block in poll bug */
  /frameworks/base/core/jni/
android_bluetooth_BluetoothAudioGateway.cpp 27 #define USE_SELECT (0) /* 1 for select(), 0 for poll(); used only when
47 #include <sys/poll.h>
393 n = poll(fds, cnt, timeout_ms);
396 LOGE("listening poll() on RFCOMM sockets: %s (%d)",
402 // LOGI("listening poll() on RFCOMM socket timed out");
407 //LOGI("listening poll() on RFCOMM socket returned %d", n);
410 //LOGI("Poll on fd %d revent = %d.", fds[cnt].fd, fds[cnt].revents);
434 LOGI("Bogus poll(): %d fake pollfd entrie(s)!", n);
  /packages/apps/IM/plugin/com/android/im/plugin/
ImpsConfigNames.java 100 * Determines whether to poll presence from the server or use subscribe/notify
103 public static final String POLL_PRESENCE = "imps.poll-presence";
  /system/core/include/cutils/
abort_socket.h 34 * syscalls connect(), accept(), read(), write(), then using a blocking poll()
35 * on both the primary socket and a local pipe. This makes the poll() abortable
  /external/libpcap/
TODO 28 "select()" and "poll()" don't work on BPF devices on most BSDs, and
  /external/strace/
TODO 25 print events on entry to and revents on exit from poll
acinclude.m4 112 #include <poll.h>
147 if (poll(&pfd, 1, 0) < 0)
172 [Define if you have SVR4 and the poll system call works on /proc files.])
  /external/bluetooth/glib/docs/reference/glib/tmpl/
main.sgml 492 <function>poll()</function> system call.
544 @func: the function to call to poll all file descriptors.
710 <entry>the file descriptor to poll (or a <type>HANDLE</type> on Win32 platforms).</entry>
725 <function>poll()</function> function to indicate which events occurred.
772 poll() call doesn't block (since that would be time
778 value to ensure that the poll() call doesn't block too
783 since it must wait until poll() has been called before
786 poll() call blocks.
787 In the check function, it tests the results of the poll()
793 results of the poll() call) it should return %TRUE
    [all...]
  /external/kernel-headers/original/linux/
netdevice.h 394 /* Link to poll list */
396 int (*poll) (struct net_device *dev, int *quota); member in struct:net_device
843 /* Add interface to tail of rx poll list. This assumes that _prep has
849 /* Try to reschedule poll. Called by irq handler. */
857 /* Try to reschedule poll. Called by dev->poll() after netif_rx_complete().
876 /* Remove interface from poll list: it must be in the poll list
877 * on current cpu. This primitive is called by dev->poll(), when
878 * it completes the work. The device cannot be out of poll list at thi
    [all...]
ipmi_smi.h 114 /* Called to poll for work to do. This is so upper layers can
115 poll for operations during things like crash dumps. */
116 void (*poll)(void *send_info); member in struct:ipmi_smi_handlers
  /external/bluetooth/bluez/tools/
l2ping.c 38 #include <sys/poll.h>
170 if ((err = poll(pf, 1, timeout * 1000)) < 0) {
171 perror("Poll failed");
  /frameworks/base/telephony/java/com/android/internal/telephony/
ServiceStateTracker.java 56 * A unique identifier to track requests associated with a poll
76 /** Signal strength poll rate. */
283 // This will effectively cancel the rest of the poll requests.
  /bionic/libc/kernel/common/linux/
skbuff.h 25 #include <linux/poll.h>
  /external/qemu/distrib/sdl-1.2.12/src/joystick/
SDL_sysjoystick.h 70 /* Function to update the state of a joystick - called as a device poll.
  /external/qemu/distrib/sdl-1.2.12/src/joystick/dummy/
SDL_sysjoystick.c 61 /* Function to update the state of a joystick - called as a device poll.
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/port/
chromium.py 186 def poll(self): member in class:ChromiumDriver
187 return self._proc.poll()
212 if line == '' and self.poll() is not None:
255 not self._proc.poll()):

Completed in 291 milliseconds

1 2 34 5 6 7 8 91011>>