Searched refs:writeset (Results 1 - 5 of 5) sorted by relevance

/external/openssh/
H A Dserverloop.c465 process_output(fd_set *writeset) argument
473 if (!compat20 && fdin != -1 && FD_ISSET(fdin, writeset)) {
505 if (FD_ISSET(connection_out, writeset))
554 fd_set *readset = NULL, *writeset = NULL; local
701 wait_until_can_do_something(&readset, &writeset, &max_fd,
711 channel_after_select(readset, writeset);
717 process_output(writeset);
721 if (writeset)
722 xfree(writeset);
821 fd_set *readset = NULL, *writeset local
[all...]
H A Dchannels.c783 typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset);
789 channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset) argument
796 channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset) argument
799 FD_SET(c->sock, writeset);
803 channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset) argument
808 FD_SET(c->sock, writeset);
812 channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset) argument
824 FD_SET(c->wfd, writeset);
838 FD_SET(c->efd, writeset);
850 channel_pre_input_draining(Channel *c, fd_set *readset, fd_set *writeset) argument
863 channel_pre_output_draining(Channel *c, fd_set *readset, fd_set *writeset) argument
939 channel_pre_x11_open_13(Channel *c, fd_set *readset, fd_set *writeset) argument
965 channel_pre_x11_open(Channel *c, fd_set *readset, fd_set *writeset) argument
991 channel_pre_mux_client(Channel *c, fd_set *readset, fd_set *writeset) argument
1015 channel_decode_socks4(Channel *c, fd_set *readset, fd_set *writeset) argument
1127 channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset) argument
1269 channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset) argument
1313 channel_post_x11_listener(Channel *c, fd_set *readset, fd_set *writeset) argument
1446 channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset) argument
1497 channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset) argument
1531 channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset) argument
1591 channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset) argument
1640 channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset) argument
1732 channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset) argument
1806 channel_post_open(Channel *c, fd_set *readset, fd_set *writeset) argument
1840 channel_post_mux_client(Channel *c, fd_set *readset, fd_set *writeset) argument
1889 channel_post_mux_listener(Channel *c, fd_set *readset, fd_set *writeset) argument
1940 channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset) argument
2061 channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset) argument
2124 channel_after_select(fd_set *readset, fd_set *writeset) argument
[all...]
H A Dclientloop.c1262 client_process_output(fd_set *writeset) argument
1268 if (FD_ISSET(fileno(stdout), writeset)) {
1292 if (FD_ISSET(fileno(stderr), writeset)) {
1382 fd_set *readset = NULL, *writeset = NULL; local
1502 client_wait_until_can_do_something(&readset, &writeset,
1510 channel_after_select(readset, writeset);
1532 client_process_output(writeset);
1547 if (FD_ISSET(connection_out, writeset))
1564 if (writeset)
1565 xfree(writeset);
[all...]
H A Dssh-agent.c995 after_select(fd_set *readset, fd_set *writeset) argument
1037 FD_ISSET(sockets[i].fd, writeset)) {
/external/chromium/net/socket/
H A Dtcp_client_socket_libevent.cc252 fd_set writeset; local
253 FD_ZERO(&writeset);
254 FD_SET(socket_, &writeset);
258 int res = HANDLE_EINTR(select(socket_ + 1, 0, &writeset, 0, &tv));

Completed in 161 milliseconds