HomeSort by relevance Sort by last modified time
    Searched refs:readset (Results 1 - 3 of 3) sorted by null

  /external/ipsec-tools/
main.c 193 fd_set readset = fdset; local
195 if (select(fdset_size, &readset, NULL, NULL, timeout) < 0) {
198 if (FD_ISSET(lcconf->sock_pfkey, &readset)) {
202 if (FD_ISSET(p->sock, &readset)) {
  /frameworks/base/core/jni/
android_util_EventLog.cpp 169 fd_set readset; local
170 FD_ZERO(&readset);
176 FD_SET(fd, &readset);
177 int r = select(fd + 1, &readset, NULL, NULL, &timeout);
  /system/core/logcat/
logcat.cpp 259 fd_set readset; local
270 FD_ZERO(&readset);
272 FD_SET(dev->fd, &readset);
274 result = select(max + 1, &readset, NULL, NULL, sleep ? NULL : &timeout);
279 if (FD_ISSET(dev->fd, &readset)) {

Completed in 103 milliseconds