Home | History | Annotate | Download | only in libril

Lines Matching refs:rfds

182 static void processReadReadies(fd_set * rfds, int n)
189 if (rev != NULL && FD_ISSET(rev->fd, rfds)) {
332 static void printReadies(fd_set * rfds)
336 if (rev != NULL && FD_ISSET(rev->fd, rfds)) {
342 #define printReadies(rfds) do {} while(0)
348 fd_set rfds;
356 memcpy(&rfds, &readFds, sizeof(fd_set));
365 printReadies(&rfds);
366 n = select(nfds, &rfds, NULL, NULL, ptv);
367 printReadies(&rfds);
380 processReadReadies(&rfds, n);