Lines Matching refs:readset
148 notify_prepare(fd_set *readset) in notify_prepare() argument
151 FD_SET(notify_pipe[0], readset); in notify_prepare()
154 notify_done(fd_set *readset) in notify_done() argument
158 if (notify_pipe[0] != -1 && FD_ISSET(notify_pipe[0], readset)) in notify_done()
320 process_input(struct ssh *ssh, fd_set *readset, int connection_in) in process_input() argument
326 if (FD_ISSET(connection_in, readset)) { in process_input()
400 fd_set *readset = NULL, *writeset = NULL; in server_loop2() local
440 &readset, &writeset, &max_fd, &nalloc, rekey_timeout_ms); in server_loop2()
450 channel_after_select(ssh, readset, writeset); in server_loop2()
451 if (process_input(ssh, readset, connection_in) < 0) in server_loop2()
457 free(readset); in server_loop2()