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

1 2 3 4 56 7 8 91011>>

  /dalvik/libcore/luni-kernel/src/main/java/java/lang/
ProcessManager.java 107 while ((reference = referenceQueue.poll()) != null) {
342 public ProcessReference poll() { method in class:ProcessManager.ProcessReferenceQueue
344 Object reference = super.poll();
  /development/simulator/wrapsim/
FakeDev.c 12 few calls. The input event driver can be used in a select() or poll()
14 fancy tricks with select() and poll(), or requires that we return a real
26 are handed to poll() and select(), but because of the high numeric
  /external/kernel-headers/original/linux/
net.h 142 unsigned int (*poll) (struct file *file, struct socket *sock, member in struct:proto_ops
252 SOCKCALL_UWRAP(name, poll, (struct file *file, struct socket *sock, struct poll_table_struct *wait), \
280 .poll = __lock_##name##_poll, \
  /external/mtpd/
mtpd.c 24 #include <sys/poll.h>
207 if (poll(pollfds, 2, timeout ? timeout : -1) == -1 && errno != EINTR) {
208 log_print(FATAL, "Poll() %s", strerror(errno));
  /external/openssl/crypto/rand/
rand_unix.c 129 # include <poll.h>
215 /* use poll() */
222 if (poll(&pset, 1, usec / 1000) < 0)
  /external/tcpdump/
print-rip.c 51 #define RIPCMD_POLLENTRY 6 /* poll for entry */
58 { RIPCMD_POLL, "Poll" },
59 { RIPCMD_POLLENTRY, "Poll Entry" },
print-egp.c 259 printf(" hello:%d poll:%d",
309 printf(" poll");
  /external/bluetooth/glib/glib/
gmain.c 119 * and the list of poll records
154 /* Flag indicating whether the set of fd's changed during a poll */
193 GPollFD poll; member in struct:_GChildWatchSource
676 /* Now wake up the main loop if it is waiting in the poll() */
    [all...]
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
Executor.java 79 * if ((active = tasks.poll()) != null) {
  /external/dbus/dbus/
dbus-transport-protected.h 62 /**< Called to do a single "iteration" (block on select/poll
  /external/guava/src/com/google/common/io/
LineReader.java 83 return lines.poll();
  /external/guava/src/com/google/common/util/concurrent/
AbstractExecutionThreadService.java 78 * Implementations must respond to stop requests. You could poll for lifecycle
  /external/opencore/oscl/oscl/osclio/src/
oscl_socket_stats.h 115 //Additional poll events will be counted but not logged individually.
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/port/
test.py 134 def poll(self): member in class:TestDriver
  /frameworks/base/cmds/dumpstate/
utils.c 21 #include <poll.h>
194 usleep(100000); // poll every 0.1 sec
404 int ret = poll(&pfd, 1, 200); /* 200 msec timeout */
406 fprintf(stderr, "poll: %s\n", strerror(errno));
  /frameworks/base/core/java/android/webkit/
ByteArrayBuilder.java 103 SoftReference<Chunk> entry = (SoftReference<Chunk>) sQueue.poll();
  /frameworks/base/core/jni/
android_bluetooth_HeadsetBase.cpp 34 #include <sys/poll.h>
117 int ret = poll(&pfd, 1, timeout_ms);
119 LOGE("poll() error\n");
128 LOGW("RFCOMM poll() returned success (%d), "
android_bluetooth_common.h 29 #include <sys/poll.h>
android_bluetooth_ScoSocket.cpp 35 #include <sys/poll.h>
661 LOGV("poll...");
663 while (poll(p, 2, -1) < 0) { // blocks
665 LOGE("%s: poll() failed: %s", __FUNCTION__, strerror(errno));
668 LOGV("%s: poll() EINTR, retrying", __FUNCTION__);
671 LOGV("poll() returned");
  /system/bluetooth/tools/
asocket_test.c 32 #include <sys/poll.h>
301 printf("%d: poll(", gettid());
304 ret = poll(ufds, nfds, timeout);
305 printf("%d: poll() = %d\n", gettid(), ret);
  /external/grub/netboot/
tiara.c 135 POLL - Wait for a frame
248 nic->poll = tiara_poll;
  /external/libpcap/
pcap-dag.c 508 struct timeval poll; local
571 /* Set up default poll parameters for stream
575 &mindata, &maxwait, &poll) < 0) {
593 mindata, &maxwait, &poll) < 0) {
685 * "select()" and "poll()" don't work on DAG device descriptors.
853 struct timeval poll; local
856 &mindata, &maxwait, &poll) < 0) {
871 mindata, &maxwait, &poll) < 0) {
pcap.3 516 capture loop to ``poll'' for user input periodically, as there's no
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaCallTracker.java 64 // connections dropped durin last poll
488 if (DBG_POLL) log("poll: conn[i=" + i + "]=" +
495 if (DBG_POLL) log("poll: pendingMO=" + pendingMO);
513 "poll: hangupPendingMO, hangup conn " + i);
519 // Do not continue processing this poll
613 // This is the first poll after an ATD.
617 Log.d(LOG_TAG,"Pending MO dropped before poll fg state:"
633 // cases from the "dropped during poll" list
    [all...]
  /external/strace/android/arch/arm/
config.h 119 /* Define if you have SVR4 and the poll system call works on /proc files. */
122 /* Define to 1 if you have the <poll.h> header file. */
264 /* Define to 1 if you have the <sys/poll.h> header file. */

Completed in 310 milliseconds

1 2 3 4 56 7 8 91011>>