Lines Matching refs:rfds
267 fd_set rfds; in acpi_aml_loop() local
285 FD_ZERO(&rfds); in acpi_aml_loop()
290 maxfd = acpi_aml_set_fd(STDIN_FILENO, maxfd, &rfds); in acpi_aml_loop()
302 maxfd = acpi_aml_set_fd(fd, maxfd, &rfds); in acpi_aml_loop()
306 ret = select(maxfd+1, &rfds, &wfds, NULL, &tv); in acpi_aml_loop()
312 if (FD_ISSET(STDIN_FILENO, &rfds)) in acpi_aml_loop()
320 if (FD_ISSET(fd, &rfds)) { in acpi_aml_loop()
338 fd_set rfds; in acpi_aml_readable() local
345 FD_ZERO(&rfds); in acpi_aml_readable()
346 maxfd = acpi_aml_set_fd(fd, maxfd, &rfds); in acpi_aml_readable()
347 ret = select(maxfd+1, &rfds, NULL, NULL, &tv); in acpi_aml_readable()
350 if (ret > 0 && FD_ISSET(fd, &rfds)) in acpi_aml_readable()