• Home
  • Raw
  • Download

Lines Matching refs:readset

103     fd_set *readset, fd_set *writeset);
1067 fd_set *readset, fd_set *writeset) in channel_pre_listener() argument
1069 FD_SET(c->sock, readset); in channel_pre_listener()
1074 fd_set *readset, fd_set *writeset) in channel_pre_connecting() argument
1082 fd_set *readset, fd_set *writeset) in channel_pre_open() argument
1088 FD_SET(c->rfd, readset); in channel_pre_open()
1112 FD_SET(c->efd, readset); 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
1223 FD_SET(c->rfd, readset); in channel_pre_mux_client()
1529 fd_set *readset, fd_set *writeset) in channel_pre_dynamic() argument
1541 FD_SET(c->sock, readset); in channel_pre_dynamic()
1563 FD_SET(c->sock, readset); in channel_pre_dynamic()
1651 fd_set *readset, fd_set *writeset) in channel_post_x11_listener() argument
1659 if (!FD_ISSET(c->sock, readset)) in channel_post_x11_listener()
1782 fd_set *readset, fd_set *writeset) in channel_post_port_listener() argument
1790 if (!FD_ISSET(c->sock, readset)) in channel_post_port_listener()
1842 fd_set *readset, fd_set *writeset) in channel_post_auth_listener() argument
1849 if (!FD_ISSET(c->sock, readset)) in channel_post_auth_listener()
1871 fd_set *readset, fd_set *writeset) in channel_post_connecting() argument
1944 fd_set *readset, fd_set *writeset) argument
1952 if (c->rfd == -1 || (!force && !FD_ISSET(c->rfd, readset)))
1995 fd_set *readset, fd_set *writeset) argument
2089 fd_set *readset, fd_set *writeset) argument
2118 fd_set *readset, fd_set *writeset) argument
2126 if (c->efd == -1 || (!force && !FD_ISSET(c->efd, readset)))
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
2241 if (c->rfd == -1 || !FD_ISSET(c->rfd, readset))
2274 fd_set *readset, fd_set *writeset) argument
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
2314 if (!FD_ISSET(c->sock, readset))
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);