HomeSort by relevance Sort by last modified time
    Searched refs:revents (Results 101 - 125 of 275) sorted by null

1 2 3 45 6 7 8 91011

  /hardware/invensense/6515/libsensors_iio/software/simple_apps/gesture_test/
inv_gesture_test.c 595 pfd[i].revents = 0;
606 if(pfd[i].revents != 0) {
632 pfd[i].revents = 0; // no need: reset anyway
  /system/netd/server/dns/
DnsTlsSocket.cpp 375 if (fds[SSLFD].revents & (POLLIN | POLLERR)) {
381 if (fds[IPCFD].revents & (POLLIN | POLLERR)) {
393 } else if (fds[SSLFD].revents & POLLOUT) {
  /device/generic/goldfish/wifi/wifi_hal/
netlink.cpp 119 if ((fd.revents & POLLIN) == 0) {
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
select.c 130 pfd.revents = 0;
  /external/curl/include/curl/
multi.h 113 short revents; /* not supported yet */ member in struct:curl_waitfd
  /external/iproute2/misc/
arpd.c 799 pset[0].revents = 0;
801 pset[1].revents = 0;
820 if (pset[0].revents&EVENTS)
822 if (pset[1].revents&EVENTS)
  /external/libchrome/base/message_loop/
message_pump_glib.cc 239 if (wakeup_gpollfd_->revents & G_IO_IN) {
  /external/libcups/cups/
http-addrlist.c 312 DEBUG_printf(("pfds[%d].revents=%x\n", i, pfds[i].revents));
313 if (pfds[i].revents && !(pfds[i].revents & (POLLERR | POLLHUP)))
330 else if (pfds[i].revents & (POLLERR | POLLHUP))
  /external/toybox/lib/
interestingtimes.c 157 pfd.revents = 0;
  /frameworks/av/media/mtp/
MtpFfsHandle.cpp 313 if (mPollFds[0].revents & POLLIN) {
314 mPollFds[0].revents = 0;
319 if (mPollFds[1].revents & POLLIN) {
320 mPollFds[1].revents = 0;
  /frameworks/base/core/java/com/android/internal/os/
ZygoteServer.java 193 if ((pollFds[i].revents & POLLIN) == 0) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/
control_external.h 235 * mangle the revents of poll descriptors
237 int (*poll_revents)(snd_ctl_ext_t *ext, struct pollfd *pfds, unsigned int nfds, unsigned short *revents);
  /build/make/tools/makeparallel/
makeparallel.cpp 250 } else if (pollfds[0].revents != POLLIN) {
251 error(EXIT_FAILURE, 0, "unexpected event %d\n", pollfds[0].revents);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/TftpServer/
TftpServer.c 728 int revents; local
742 revents = pTftpPort->revents;
743 pTftpPort->revents = 0;
744 if ( 0 != ( revents & POLLRDNORM )) {
812 revents |= POLLHUP;
819 if ( 0 != ( revents & POLLHUP )) {
    [all...]
  /device/linaro/hikey/wpan/uim/
uim.c 535 p.revents = 0;
537 UIM_DBG("poll broke due to event %d(PRI:%d/ERR:%d)\n", p.revents, POLLPRI, POLLERR);
  /external/toybox/toys/pending/
telnet.c 328 if(pfds[0].revents) {
333 if(pfds[1].revents) {
  /frameworks/base/native/android/
sensor.cpp 257 pfd.revents = 0;
264 if (pfd.revents != POLLIN)
  /hardware/broadcom/wlan/bcmdhd/wifi_hal/
wifi_hal.cpp 472 pfd[0].revents = 0;
473 pfd[1].revents = 0;
478 } else if (pfd[0].revents & POLLERR) {
483 } else if (pfd[0].revents & POLLHUP) {
486 } else if (pfd[0].revents & POLLIN) {
489 } else if (pfd[1].revents & POLLIN) {
504 ALOGE("Unknown event - %0x, %0x", pfd[0].revents, pfd[1].revents);
    [all...]
  /system/bt/service/ipc/
linux_ipc_host.cc 89 if (pfds_[kFdIpc].revents && !OnMessage()) {
93 if (pfds_.size() == kPossibleFds && pfds_[kFdGatt].revents &&
  /system/netd/server/
MDnsSdListener.cpp 608 if (mPollFds[i].revents != 0) {
610 ALOGD("Monitor found [%d].revents = %d - calling ProcessResults",
611 i, mPollFds[i].revents);
614 mPollFds[i].revents = 0;
617 if (VDBG) ALOGD("controlSocket shows revent= %d", mPollFds[0].revents);
618 switch (mPollFds[0].revents) {
628 mPollFds[0].revents = 0;
  /external/adhd/cras/src/libcras/
cras_client.c 367 poll_fd->revents = 0;
833 poll_fd.revents = 0;
897 if (poll_fd[0].revents) {
899 client, poll_fd[0].revents);
903 if (poll_fd[1].revents) {
904 rc = server_fd_dispatch(client, poll_fd[1].revents);
994 if (read_fd >= 0 && pollfds[1].revents & POLLIN) {
999 if (pollfds[0].revents & POLLIN) {
    [all...]
  /art/adbconnection/
adbconnection.cc 594 if (FlagsSet(agent_control_sock_poll.revents, POLLIN)) {
623 } else if (FlagsSet(control_sock_poll.revents, POLLIN)) {
652 } else if (FlagsSet(control_sock_poll.revents, POLLRDHUP)) {
659 } else if (FlagsSet(adb_socket_poll.revents, POLLIN)) {
668 } else if (FlagsSet(adb_socket_poll.revents, POLLRDHUP)) {
    [all...]
  /external/ltp/testcases/kernel/syscalls/epoll2/examples/
epoll-test.c 79 unsigned int events, revents; member in struct:eph_conn
131 conn->revents = 0;
216 if (conn->revents & (EPOLLERR | EPOLLHUP))
529 conn->revents = cevents->events;
531 if (conn->revents & conn->events)
  /hardware/qcom/display/msm8909/hdmi_cec/
qhdmi_cec.cpp 552 if (poll_fd.revents & POLLIN || poll_fd.revents & POLLPRI) {
622 if ((ctx->poll_fds[node_event].revents & POLLPRI) &&
635 if (ctx->poll_fds[node_event].revents & POLLIN) {
652 if (ctx->poll_fds[node_event].revents & POLLIN) {
  /hardware/qcom/display/msm8909w_3100/hdmi_cec/
qhdmi_cec.cpp 552 if (poll_fd.revents & POLLIN || poll_fd.revents & POLLPRI) {
622 if ((ctx->poll_fds[node_event].revents & POLLPRI) &&
635 if (ctx->poll_fds[node_event].revents & POLLIN) {
652 if (ctx->poll_fds[node_event].revents & POLLIN) {

Completed in 1378 milliseconds

1 2 3 45 6 7 8 91011