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

  /frameworks/base/core/jni/
android_util_EventLog.cpp 166 fd_set readset; local
167 FD_ZERO(&readset);
173 FD_SET(fd, &readset);
174 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 1352 milliseconds