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

/freebsd-10.0-release/contrib/apr/poll/unix/
H A Dselect.c36 fd_set readset, writeset, exceptset; local
69 FD_ZERO(&writeset);
117 FD_SET(fd, &writeset);
130 rv = pipe_select(maxfd + 1, &readset, &writeset, &exceptset, tvptr);
135 rv = select(maxfd + 1, &readset, &writeset, &exceptset, tvptr);
169 if (FD_ISSET(fd, &writeset)) {
187 fd_set readset, writeset, exceptset; member in struct:apr_pollset_private_t
214 FD_ZERO(&(pollset->p->writeset));
281 FD_SET(fd, &(pollset->p->writeset));
327 FD_CLR(fd, &(pollset->p->writeset));
347 fd_set readset, writeset, exceptset; local
[all...]
/freebsd-10.0-release/crypto/openssh/
H A Dserverloop.c472 process_output(fd_set *writeset) argument
480 if (!compat20 && fdin != -1 && FD_ISSET(fdin, writeset)) {
512 if (FD_ISSET(connection_out, writeset))
561 fd_set *readset = NULL, *writeset = NULL; local
708 wait_until_can_do_something(&readset, &writeset, &max_fd,
718 channel_after_select(readset, writeset);
724 process_output(writeset);
727 free(writeset);
826 fd_set *readset = NULL, *writeset = NULL; local
863 wait_until_can_do_something(&readset, &writeset,
[all...]
H A Dchannels.c801 typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset);
807 channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset) argument
814 channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset) argument
817 FD_SET(c->sock, writeset);
821 channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset) argument
826 FD_SET(c->sock, writeset);
858 channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset) argument
877 FD_SET(c->wfd, writeset);
891 FD_SET(c->efd, writeset);
903 channel_pre_input_draining(Channel *c, fd_set *readset, fd_set *writeset) argument
916 channel_pre_output_draining(Channel *c, fd_set *readset, fd_set *writeset) argument
992 channel_pre_x11_open_13(Channel *c, fd_set *readset, fd_set *writeset) argument
1018 channel_pre_x11_open(Channel *c, fd_set *readset, fd_set *writeset) argument
1044 channel_pre_mux_client(Channel *c, fd_set *readset, fd_set *writeset) argument
1068 channel_decode_socks4(Channel *c, fd_set *readset, fd_set *writeset) argument
1178 channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset) argument
1318 channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset) argument
1362 channel_post_x11_listener(Channel *c, fd_set *readset, fd_set *writeset) argument
1501 channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset) argument
1556 channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset) argument
1593 channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset) argument
1653 channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset) argument
1702 channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset) argument
1794 channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset) argument
1879 channel_post_open(Channel *c, fd_set *readset, fd_set *writeset) argument
1913 channel_post_mux_client(Channel *c, fd_set *readset, fd_set *writeset) argument
1962 channel_post_mux_listener(Channel *c, fd_set *readset, fd_set *writeset) argument
2015 channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset) argument
2136 channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset, time_t *unpause_secs) argument
2225 channel_after_select(fd_set *readset, fd_set *writeset) argument
[all...]
H A Dclientloop.c1363 client_process_output(fd_set *writeset) argument
1369 if (FD_ISSET(fileno(stdout), writeset)) {
1393 if (FD_ISSET(fileno(stderr), writeset)) {
1483 fd_set *readset = NULL, *writeset = NULL; local
1603 client_wait_until_can_do_something(&readset, &writeset,
1611 channel_after_select(readset, writeset);
1633 client_process_output(writeset);
1648 if (FD_ISSET(connection_out, writeset))
1664 free(writeset);
H A Dssh-agent.c1015 after_select(fd_set *readset, fd_set *writeset) argument
1057 FD_ISSET(sockets[i].fd, writeset)) {
/freebsd-10.0-release/crypto/heimdal/appl/push/
H A Dpush.c287 fd_set readset, writeset; local
290 FD_ZERO(&writeset);
305 FD_SET(s,&writeset);
306 ret = select (s + 1, &readset, &writeset, NULL, NULL);
479 if (FD_ISSET(s, &writeset)) {

Completed in 214 milliseconds