Lines Matching refs:readset
147 notify_prepare(fd_set *readset) in notify_prepare() argument
150 FD_SET(notify_pipe[0], readset); in notify_prepare()
153 notify_done(fd_set *readset) in notify_done() argument
157 if (notify_pipe[0] != -1 && FD_ISSET(notify_pipe[0], readset)) in notify_done()
310 process_input(struct ssh *ssh, fd_set *readset, int connection_in) in process_input() argument
316 if (FD_ISSET(connection_in, readset)) { in process_input()
381 fd_set *readset = NULL, *writeset = NULL; in server_loop2() local
418 &readset, &writeset, &max_fd, &nalloc, rekey_timeout_ms); in server_loop2()
428 channel_after_select(ssh, readset, writeset); in server_loop2()
429 if (process_input(ssh, readset, connection_in) < 0) in server_loop2()
435 free(readset); in server_loop2()