Lines Matching refs:readset
693 typedef void chan_fn(Channel *c, fd_set * readset, fd_set * writeset);
698 channel_pre_listener(Channel *c, fd_set * readset, fd_set * writeset) in channel_pre_listener() argument
700 FD_SET(c->sock, readset); in channel_pre_listener()
704 channel_pre_connecting(Channel *c, fd_set * readset, fd_set * writeset) in channel_pre_connecting() argument
711 channel_pre_open_13(Channel *c, fd_set * readset, fd_set * writeset) in channel_pre_open_13() argument
714 FD_SET(c->sock, readset); in channel_pre_open_13()
720 channel_pre_open(Channel *c, fd_set * readset, fd_set * writeset) in channel_pre_open() argument
728 FD_SET(c->rfd, readset); in channel_pre_open()
749 FD_SET(c->efd, readset); in channel_pre_open()
754 channel_pre_input_draining(Channel *c, fd_set * readset, fd_set * writeset) in channel_pre_input_draining() argument
766 channel_pre_output_draining(Channel *c, fd_set * readset, fd_set * writeset) in channel_pre_output_draining() argument
842 channel_pre_x11_open_13(Channel *c, fd_set * readset, fd_set * writeset) in channel_pre_x11_open_13() argument
849 channel_pre_open_13(c, readset, writeset); in channel_pre_x11_open_13()
868 channel_pre_x11_open(Channel *c, fd_set * readset, fd_set * writeset) in channel_pre_x11_open() argument
876 channel_pre_open(c, readset, writeset); in channel_pre_x11_open()
895 channel_decode_socks4(Channel *c, fd_set * readset, fd_set * writeset) in channel_decode_socks4() argument
974 channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset) in channel_decode_socks5() argument
1087 channel_pre_dynamic(Channel *c, fd_set * readset, fd_set * writeset) in channel_pre_dynamic() argument
1098 FD_SET(c->sock, readset); in channel_pre_dynamic()
1105 ret = channel_decode_socks4(c, readset, writeset); in channel_pre_dynamic()
1108 ret = channel_decode_socks5(c, readset, writeset); in channel_pre_dynamic()
1121 FD_SET(c->sock, readset); in channel_pre_dynamic()
1131 channel_post_x11_listener(Channel *c, fd_set * readset, fd_set * writeset) in channel_post_x11_listener() argument
1140 if (FD_ISSET(c->sock, readset)) { in channel_post_x11_listener()
1244 channel_post_port_listener(Channel *c, fd_set * readset, fd_set * writeset) in channel_post_port_listener() argument
1252 if (FD_ISSET(c->sock, readset)) { in channel_post_port_listener()
1295 channel_post_auth_listener(Channel *c, fd_set * readset, fd_set * writeset) in channel_post_auth_listener() argument
1303 if (FD_ISSET(c->sock, readset)) { in channel_post_auth_listener()
1330 channel_post_connecting(Channel *c, fd_set * readset, fd_set * writeset) in channel_post_connecting() argument
1376 channel_handle_rfd(Channel *c, fd_set * readset, fd_set * writeset) in channel_handle_rfd() argument
1382 FD_ISSET(c->rfd, readset)) { in channel_handle_rfd()
1414 channel_handle_wfd(Channel *c, fd_set * readset, fd_set * writeset) in channel_handle_wfd() argument
1470 channel_handle_efd(Channel *c, fd_set * readset, fd_set * writeset) in channel_handle_efd() argument
1495 FD_ISSET(c->efd, readset)) { in channel_handle_efd()
1533 channel_post_open(Channel *c, fd_set * readset, fd_set * writeset) in channel_post_open() argument
1535 channel_handle_rfd(c, readset, writeset); in channel_post_open()
1536 channel_handle_wfd(c, readset, writeset); in channel_post_open()
1539 channel_handle_efd(c, readset, writeset); in channel_post_open()
1544 channel_post_output_drain_13(Channel *c, fd_set * readset, fd_set * writeset) in channel_post_output_drain_13() argument
1661 channel_handler(chan_fn *ftab[], fd_set * readset, fd_set * writeset) in channel_handler() argument
1682 (*ftab[c->type])(c, readset, writeset); in channel_handler()
1720 channel_after_select(fd_set * readset, fd_set * writeset) in channel_after_select() argument
1722 channel_handler(channel_post, readset, writeset); in channel_after_select()