Home | History | Annotate | Download | only in libril

Lines Matching refs:rfds

183 static void processReadReadies(fd_set * rfds, int n)
190 if (rev != NULL && FD_ISSET(rev->fd, rfds)) {
333 static void printReadies(fd_set * rfds)
337 if (rev != NULL && FD_ISSET(rev->fd, rfds)) {
343 #define printReadies(rfds) do {} while(0)
349 fd_set rfds;
357 memcpy(&rfds, &readFds, sizeof(fd_set));
366 printReadies(&rfds);
367 n = select(nfds, &rfds, NULL, NULL, ptv);
368 printReadies(&rfds);
381 processReadReadies(&rfds, n);