HomeSort by relevance Sort by last modified time
    Searched defs:readset (Results 1 - 4 of 4) 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);
  /external/openssh/
serverloop.c 154 notify_prepare(fd_set *readset)
157 FD_SET(notify_pipe[0], readset);
160 notify_done(fd_set *readset)
164 if (notify_pipe[0] != -1 && FD_ISSET(notify_pipe[0], readset))
388 process_input(fd_set *readset)
394 if (FD_ISSET(connection_in, readset)) {
423 if (!fdout_eof && FD_ISSET(fdout, readset)) {
442 if (!fderr_eof && FD_ISSET(fderr, readset)) {
554 fd_set *readset = NULL, *writeset = NULL; local
701 wait_until_can_do_something(&readset, &writeset, &max_fd
821 fd_set *readset = NULL, *writeset = NULL; local
    [all...]
clientloop.c 688 client_process_net_input(fd_set *readset)
697 if (FD_ISSET(connection_in, readset)) {
1382 fd_set *readset = NULL, *writeset = NULL; local
    [all...]
  /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 88 milliseconds