Searched refs:readset (Results 1 - 13 of 13) sorted by relevance

/freebsd-11-stable/contrib/apr/poll/unix/
H A Dselect.c36 fd_set readset, writeset, exceptset; local
68 FD_ZERO(&readset);
114 FD_SET(fd, &readset);
130 rv = pipe_select(maxfd + 1, &readset, &writeset, &exceptset, tvptr);
135 rv = select(maxfd + 1, &readset, &writeset, &exceptset, tvptr);
166 if (FD_ISSET(fd, &readset)) {
187 fd_set readset, writeset, exceptset; member in struct:apr_pollset_private_t
213 FD_ZERO(&(pollset->p->readset));
278 FD_SET(fd, &(pollset->p->readset));
326 FD_CLR(fd, &(pollset->p->readset));
347 fd_set readset, writeset, exceptset; local
[all...]
/freebsd-11-stable/crypto/openssh/
H A Dserverloop.c132 notify_prepare(fd_set *readset) argument
135 FD_SET(notify_pipe[0], readset);
138 notify_done(fd_set *readset) argument
142 if (notify_pipe[0] != -1 && FD_ISSET(notify_pipe[0], readset))
282 process_input(fd_set *readset, int connection_in) argument
289 if (FD_ISSET(connection_in, readset)) {
354 fd_set *readset = NULL, *writeset = NULL; local
392 &readset, &writeset, &max_fd, &nalloc, rekey_timeout_ms);
402 channel_after_select(readset, writeset);
403 if (process_input(readset, connection_i
[all...]
H A Dchannels.c879 typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset);
885 channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset) argument
887 FD_SET(c->sock, readset);
892 channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset) argument
899 channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset) argument
902 FD_SET(c->sock, readset);
908 channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset) argument
916 FD_SET(c->rfd, readset);
939 FD_SET(c->efd, readset);
946 channel_pre_input_draining(Channel *c, fd_set *readset, fd_se argument
959 channel_pre_output_draining(Channel *c, fd_set *readset, fd_set *writeset) argument
1042 channel_pre_x11_open_13(Channel *c, fd_set *readset, fd_set *writeset) argument
1068 channel_pre_x11_open(Channel *c, fd_set *readset, fd_set *writeset) argument
1094 channel_pre_mux_client(Channel *c, fd_set *readset, fd_set *writeset) argument
1118 channel_decode_socks4(Channel *c, fd_set *readset, fd_set *writeset) argument
1231 channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset) argument
1371 channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset) argument
1415 channel_post_x11_listener(Channel *c, fd_set *readset, fd_set *writeset) argument
1571 channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset) argument
1631 channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset) argument
1668 channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset) argument
1728 channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset) argument
1777 channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset) argument
1869 channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset) argument
1943 channel_post_open(Channel *c, fd_set *readset, fd_set *writeset) argument
1977 channel_post_mux_client(Channel *c, fd_set *readset, fd_set *writeset) argument
2026 channel_post_mux_listener(Channel *c, fd_set *readset, fd_set *writeset) argument
2079 channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset) argument
2204 channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset, time_t *unpause_secs) argument
2293 channel_after_select(fd_set *readset, fd_set *writeset) argument
[all...]
H A Dclientloop.c756 client_process_net_input(fd_set *readset) argument
765 if (FD_ISSET(connection_in, readset)) {
1329 client_process_input(fd_set *readset) argument
1335 if (FD_ISSET(fileno(stdin), readset)) {
1504 fd_set *readset = NULL, *writeset = NULL; local
1660 client_wait_until_can_do_something(&readset, &writeset,
1668 channel_after_select(readset, writeset);
1671 client_process_net_input(readset);
1678 client_process_input(readset);
1705 free(readset);
[all...]
H A Dssh-agent.c1095 after_select(fd_set *readset, fd_set *writeset) argument
1110 if (FD_ISSET(sockets[i].fd, readset)) {
1154 if (FD_ISSET(sockets[i].fd, readset)) {
/freebsd-11-stable/crypto/heimdal/lib/kadm5/
H A Dipropd_master.c904 fd_set readset; local
915 FD_ZERO(&readset);
916 FD_SET(signal_fd, &readset);
918 FD_SET(listen_fd, &readset);
920 FD_SET(listen6_fd, &readset);
926 FD_SET(p->fd, &readset);
931 &readset, NULL, NULL, &to);
956 if (ret && FD_ISSET(signal_fd, &readset)) {
993 if (ret && FD_ISSET(p->fd, &readset)) {
1004 if (ret && FD_ISSET(listen6_fd, &readset)) {
[all...]
H A Dipropd_slave.c658 fd_set readset; local
666 FD_ZERO(&readset);
667 FD_SET(master_fd, &readset);
673 &readset, NULL, NULL, &to);
/freebsd-11-stable/contrib/gdb/gdb/gdbserver/
H A Dremote-utils.c345 fd_set readset; local
351 FD_ZERO (&readset);
352 FD_SET (remote_desc, &readset);
353 if (select (remote_desc + 1, &readset, 0, 0, &immediate) > 0)
/freebsd-11-stable/crypto/heimdal/appl/push/
H A Dpush.c287 fd_set readset, writeset; local
289 FD_ZERO(&readset);
293 FD_SET(s,&readset);
306 ret = select (s + 1, &readset, &writeset, NULL, NULL);
314 if (FD_ISSET(s, &readset)) {
/freebsd-11-stable/contrib/ntp/ntpd/
H A Dntpd.c1604 fd_set readset; local
1623 FD_ZERO(&readset);
1624 FD_SET(pipe_read_fd, &readset);
1625 rc = select(pipe_read_fd + 1, &readset, NULL, NULL,
1641 FD_ZERO(&readset);
1642 FD_SET(pipe_read_fd, &readset);
1645 rc = select(pipe_read_fd + 1, &readset, NULL,
/freebsd-11-stable/crypto/heimdal/appl/rsh/
H A Drsh.c103 fd_set readset; local
106 readset = real_readset;
107 ret = select (max(s, errsock) + 1, &readset, NULL, NULL, NULL);
114 if (FD_ISSET(s, &readset)) {
126 if (errsock != -1 && FD_ISSET(errsock, &readset)) {
138 if (FD_ISSET(STDIN_FILENO, &readset)) {
H A Drshd.c436 fd_set readset = real_readset; local
438 ret = select (max_fd, &readset, NULL, NULL, NULL);
445 if (FD_ISSET(from0, &readset)) {
456 if (FD_ISSET(from1, &readset)) {
469 if (FD_ISSET(from2, &readset)) {
/freebsd-11-stable/contrib/ntp/lib/isc/unix/
H A Dsocket.c121 fd_set *readset; member in struct:isc_socketwait
5822 swait_private.readset = manager->read_fds_copy;
5826 n = select(swait_private.maxfd, swait_private.readset,
5851 process_fds(manager, swait->maxfd, swait->readset, swait->writeset);

Completed in 133 milliseconds