HomeSort by relevance Sort by last modified time
    Searched defs:read_fds (Results 1 - 10 of 10) sorted by null

  /system/core/nexus/
WifiScanner.cpp 80 fd_set read_fds; local
87 FD_ZERO(&read_fds);
88 FD_SET(mCtrlPipe[0], &read_fds);
94 if ((rc = select(mCtrlPipe[0] + 1, &read_fds, NULL, NULL, &to)) < 0) {
99 } else if (FD_ISSET(mCtrlPipe[0], &read_fds))
WifiStatusPoller.cpp 83 fd_set read_fds; local
87 FD_ZERO(&read_fds);
91 FD_SET(mCtrlPipe[0], &read_fds);
94 if ((rc = select(max + 1, &read_fds, NULL, NULL, &to)) < 0) {
101 if (FD_ISSET(mCtrlPipe[0], &read_fds))
nexctl.c 87 fd_set read_fds; local
94 FD_ZERO(&read_fds);
95 FD_SET(sock, &read_fds);
97 if ((rc = select(sock +1, &read_fds, NULL, NULL, &to)) < 0) {
105 } else if (FD_ISSET(sock, &read_fds)) {
  /system/netd/
ndc.c 87 fd_set read_fds; local
94 FD_ZERO(&read_fds);
95 FD_SET(sock, &read_fds);
97 if ((rc = select(sock +1, &read_fds, NULL, NULL, &to)) < 0) {
105 } else if (FD_ISSET(sock, &read_fds)) {
  /system/vold/
vdc.c 91 fd_set read_fds; local
98 FD_ZERO(&read_fds);
99 FD_SET(sock, &read_fds);
101 if ((rc = select(sock +1, &read_fds, NULL, NULL, &to)) < 0) {
109 } else if (FD_ISSET(sock, &read_fds)) {
  /system/core/libsysutils/src/
SocketListener.cpp 144 fd_set read_fds; local
148 FD_ZERO(&read_fds);
152 FD_SET(mSock, &read_fds);
155 FD_SET(mCtrlPipe[0], &read_fds);
162 FD_SET(fd, &read_fds);
168 if ((rc = select(max + 1, &read_fds, NULL, NULL, NULL)) < 0) {
177 if (FD_ISSET(mCtrlPipe[0], &read_fds))
179 if (mListen && FD_ISSET(mSock, &read_fds)) {
203 if (FD_ISSET(fd, &read_fds)) {
  /external/dropbear/
random.c 102 fd_set read_fds; local
107 FD_ZERO(&read_fds);
108 FD_SET(readfd, &read_fds);
109 ret = select(readfd + 1, &read_fds, NULL, NULL, &timeout);
  /external/iptables/libipq/
libipq.c 140 fd_set read_fds; local
151 FD_ZERO(&read_fds);
152 FD_SET(h->fd, &read_fds);
153 ret = select(h->fd+1, &read_fds, NULL, NULL, &tv);
162 if (!FD_ISSET(h->fd, &read_fds)) {
  /system/core/adb/
fdevent.c 247 static fd_set read_fds; variable
255 FD_ZERO(&read_fds);
271 FD_CLR(fde->fd, &read_fds);
284 FD_SET(fde->fd, &read_fds);
286 FD_CLR(fde->fd, &read_fds);
372 memcpy(&rfd, &read_fds, sizeof(fd_set));
  /external/chromium/chrome/browser/
process_singleton_linux.cc 164 fd_set read_fds; local
167 FD_ZERO(&read_fds);
168 FD_SET(fd, &read_fds);
172 return HANDLE_EINTR(select(fd + 1, &read_fds, NULL, NULL, &tv));
    [all...]

Completed in 187 milliseconds