Lines Matching refs:readset
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;
701 wait_until_can_do_something(&readset, &writeset, &max_fd,
711 channel_after_select(readset, writeset);
714 process_input(readset);
719 if (readset)
720 xfree(readset);
821 fd_set *readset = NULL, *writeset = NULL;
851 wait_until_can_do_something(&readset, &writeset, &max_fd,
862 channel_after_select(readset, writeset);
869 process_input(readset);
876 if (readset)
877 xfree(readset);