Lines Matching refs:rfds
250 fd_set rfds; in Monitor() local
253 FD_ZERO(&rfds); in Monitor()
254 FD_SET(csock, &rfds); in Monitor()
255 FD_SET(dsock, &rfds); in Monitor()
257 if (select(maxfd, &rfds, NULL, NULL, NULL) <= 0) { in Monitor()
265 ReadSockets(&rfds); in Monitor()
352 fd_set rfds; in DoInteractive() local
355 FD_ZERO(&rfds); in DoInteractive()
356 FD_SET(csock, &rfds); in DoInteractive()
357 FD_SET(dsock, &rfds); in DoInteractive()
359 if (select(maxfd, &rfds, NULL, NULL, &tv) <= 0) { in DoInteractive()
364 FD_ZERO(&rfds); in DoInteractive()
365 FD_SET(0, &rfds); in DoInteractive()
366 FD_SET(csock, &rfds); in DoInteractive()
367 FD_SET(dsock, &rfds); in DoInteractive()
368 if (select(maxfd, &rfds, NULL, NULL, NULL) < 0) in DoInteractive()
372 if (!FD_ISSET(0, &rfds)) in DoInteractive()
376 ReadSockets(&rfds); in DoInteractive()
379 if (FD_ISSET(0, &rfds)) { in DoInteractive()
398 ReadSockets(fd_set *rfds) in ReadSockets() argument
401 if (FD_ISSET(csock, rfds)) in ReadSockets()
405 if (FD_ISSET(dsock, rfds)) { in ReadSockets()