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

/macosx-10.10/apr-32/apr/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...]
/macosx-10.10/OpenSSH-189/openssh/
H A Dserverloop.c154 notify_prepare(fd_set *readset) argument
157 FD_SET(notify_pipe[0], readset);
160 notify_done(fd_set *readset) argument
164 if (notify_pipe[0] != -1 && FD_ISSET(notify_pipe[0], readset))
394 process_input(fd_set *readset) argument
400 if (FD_ISSET(connection_in, readset)) {
429 if (!fdout_eof && FD_ISSET(fdout, readset)) {
448 if (!fderr_eof && FD_ISSET(fderr, readset)) {
560 fd_set *readset = NULL, *writeset = NULL; local
707 wait_until_can_do_something(&readset,
827 fd_set *readset = NULL, *writeset = NULL; local
[all...]
H A Dchannels.c793 typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset);
799 channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset) argument
801 FD_SET(c->sock, readset);
806 channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset) argument
813 channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset) argument
816 FD_SET(c->sock, readset);
822 channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset) argument
830 FD_SET(c->rfd, readset);
853 FD_SET(c->efd, readset);
860 channel_pre_input_draining(Channel *c, fd_set *readset, fd_se argument
873 channel_pre_output_draining(Channel *c, fd_set *readset, fd_set *writeset) argument
949 channel_pre_x11_open_13(Channel *c, fd_set *readset, fd_set *writeset) argument
975 channel_pre_x11_open(Channel *c, fd_set *readset, fd_set *writeset) argument
1001 channel_pre_mux_client(Channel *c, fd_set *readset, fd_set *writeset) argument
1025 channel_decode_socks4(Channel *c, fd_set *readset, fd_set *writeset) argument
1137 channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset) argument
1279 channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset) argument
1323 channel_post_x11_listener(Channel *c, fd_set *readset, fd_set *writeset) argument
1458 channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset) argument
1511 channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset) argument
1548 channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset) argument
1608 channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset) argument
1657 channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset) argument
1749 channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset) argument
1823 channel_post_open(Channel *c, fd_set *readset, fd_set *writeset) argument
1857 channel_post_mux_client(Channel *c, fd_set *readset, fd_set *writeset) argument
1906 channel_post_mux_listener(Channel *c, fd_set *readset, fd_set *writeset) argument
1959 channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset) argument
2080 channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset, time_t *unpause_secs) argument
2169 channel_after_select(fd_set *readset, fd_set *writeset) argument
[all...]
H A Dclientloop.c789 client_process_net_input(fd_set *readset) argument
798 if (FD_ISSET(connection_in, readset)) {
1374 client_process_input(fd_set *readset) argument
1380 if (FD_ISSET(fileno(stdin), readset)) {
1550 fd_set *readset = NULL, *writeset = NULL; local
1670 client_wait_until_can_do_something(&readset, &writeset,
1678 channel_after_select(readset, writeset);
1697 client_process_net_input(readset);
1704 client_process_input(readset);
1739 if (readset)
[all...]
H A Dssh-agent.c1068 after_select(fd_set *readset, fd_set *writeset) argument
1083 if (FD_ISSET(sockets[i].fd, readset)) {
1124 if (FD_ISSET(sockets[i].fd, readset)) {
/macosx-10.10/Heimdal-398.1.2/lib/kadm5/
H A Dipropd_master.c857 fd_set readset; local
867 FD_ZERO(&readset);
868 FD_SET(signal_fd, &readset);
870 FD_SET(listen_fd, &readset);
876 FD_SET(p->fd, &readset);
881 &readset, NULL, NULL, &to);
906 if (ret && FD_ISSET(signal_fd, &readset)) {
943 if (ret && FD_ISSET(p->fd, &readset)) {
954 if (ret && FD_ISSET(listen_fd, &readset)) {
H A Dipropd_slave.c659 fd_set readset; local
667 FD_ZERO(&readset);
668 FD_SET(master_fd, &readset);
674 &readset, NULL, NULL, &to);
/macosx-10.10/Heimdal-398.1.2/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)) {
/macosx-10.10/Heimdal-398.1.2/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)) {
/macosx-10.10/bind9-45.101/bind9/lib/isc/unix/
H A Dsocket.c121 fd_set *readset; member in struct:isc_socketwait
5762 swait_private.readset = manager->read_fds_copy;
5766 n = select(swait_private.maxfd, swait_private.readset,
5791 process_fds(manager, swait->maxfd, swait->readset, swait->writeset);
/macosx-10.10/ntp-92/lib/isc/unix/
H A Dsocket.c107 fd_set *readset; member in struct:isc_socketwait
5388 swait_private.readset = socketmgr->read_fds_copy;
5392 n = select(swait_private.maxfd, swait_private.readset,
5411 process_fds(socketmgr, swait->maxfd, swait->readset, swait->writeset);

Completed in 228 milliseconds