Lines Matching refs:writeset
103 fd_set *readset, fd_set *writeset);
1067 fd_set *readset, fd_set *writeset) in channel_pre_listener() argument
1074 fd_set *readset, fd_set *writeset) in channel_pre_connecting() argument
1077 FD_SET(c->sock, writeset); in channel_pre_connecting()
1082 fd_set *readset, fd_set *writeset) in channel_pre_open() argument
1092 FD_SET(c->wfd, writeset); in channel_pre_open()
1107 FD_SET(c->efd, writeset); in channel_pre_open()
1195 fd_set *readset, fd_set *writeset) in channel_pre_x11_open() argument
1203 channel_pre_open(ssh, c, readset, writeset); in channel_pre_x11_open()
1219 Channel *c, fd_set *readset, fd_set *writeset) in channel_pre_mux_client() argument
1234 FD_SET(c->wfd, writeset); in channel_pre_mux_client()
1529 fd_set *readset, fd_set *writeset) in channel_pre_dynamic() argument
1565 FD_SET(c->sock, writeset); in channel_pre_dynamic()
1651 fd_set *readset, fd_set *writeset) in channel_post_x11_listener() argument
1782 fd_set *readset, fd_set *writeset) in channel_post_port_listener() argument
1842 fd_set *readset, fd_set *writeset) in channel_post_auth_listener() argument
1871 fd_set *readset, fd_set *writeset) in channel_post_connecting() argument
1876 if (!FD_ISSET(c->sock, writeset)) in channel_post_connecting()
1944 fd_set *readset, fd_set *writeset) argument
1995 fd_set *readset, fd_set *writeset) argument
2002 if (c->wfd == -1 || !FD_ISSET(c->wfd, writeset) ||
2089 fd_set *readset, fd_set *writeset) argument
2094 if (!FD_ISSET(c->efd, writeset) || sshbuf_len(c->extended) == 0)
2118 fd_set *readset, fd_set *writeset) argument
2152 fd_set *readset, fd_set *writeset) argument
2160 return channel_handle_efd_write(ssh, c, readset, writeset);
2163 return channel_handle_efd_read(ssh, c, readset, writeset);
2201 fd_set *readset, fd_set *writeset) argument
2203 channel_handle_rfd(ssh, c, readset, writeset);
2204 channel_handle_wfd(ssh, c, readset, writeset);
2205 channel_handle_efd(ssh, c, readset, writeset);
2237 fd_set *readset, fd_set *writeset) argument
2274 fd_set *readset, fd_set *writeset) argument
2279 if (c->wfd == -1 || !FD_ISSET(c->wfd, writeset) ||
2297 fd_set *readset, fd_set *writeset) argument
2299 channel_post_mux_client_read(ssh, c, readset, writeset);
2300 channel_post_mux_client_write(ssh, c, readset, writeset);
2305 fd_set *readset, fd_set *writeset) argument
2422 fd_set *readset, fd_set *writeset, time_t *unpause_secs) argument
2448 (*ftab[c->type])(ssh, c, readset, writeset);
2530 channel_after_select(struct ssh *ssh, fd_set *readset, fd_set *writeset) argument
2532 channel_handler(ssh, CHAN_POST, readset, writeset, NULL);