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

/freebsd-13-stable/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-13-stable/crypto/openssh/
H A Dserverloop.c343 process_output(fd_set *writeset, int connection_out) argument
346 if (FD_ISSET(connection_out, writeset))
381 fd_set *readset = NULL, *writeset = NULL; local
418 &readset, &writeset, &max_fd, &nalloc, rekey_timeout_ms);
428 channel_after_select(ssh, readset, writeset);
431 process_output(writeset, connection_out);
436 free(writeset);
H A Dchannels.c103 fd_set *readset, fd_set *writeset);
1053 fd_set *readset, fd_set *writeset)
1060 fd_set *readset, fd_set *writeset)
1063 FD_SET(c->sock, writeset);
1068 fd_set *readset, fd_set *writeset)
1078 FD_SET(c->wfd, writeset);
1093 FD_SET(c->efd, writeset);
1181 fd_set *readset, fd_set *writeset)
1189 channel_pre_open(ssh, c, readset, writeset);
1205 Channel *c, fd_set *readset, fd_set *writeset)
1052 channel_pre_listener(struct ssh *ssh, Channel *c, fd_set *readset, fd_set *writeset) argument
1059 channel_pre_connecting(struct ssh *ssh, Channel *c, fd_set *readset, fd_set *writeset) argument
1067 channel_pre_open(struct ssh *ssh, Channel *c, fd_set *readset, fd_set *writeset) argument
1180 channel_pre_x11_open(struct ssh *ssh, Channel *c, fd_set *readset, fd_set *writeset) argument
1204 channel_pre_mux_client(struct ssh *ssh, Channel *c, fd_set *readset, fd_set *writeset) argument
1514 channel_pre_dynamic(struct ssh *ssh, Channel *c, fd_set *readset, fd_set *writeset) argument
1636 channel_post_x11_listener(struct ssh *ssh, Channel *c, fd_set *readset, fd_set *writeset) argument
1767 channel_post_port_listener(struct ssh *ssh, Channel *c, fd_set *readset, fd_set *writeset) argument
1827 channel_post_auth_listener(struct ssh *ssh, Channel *c, fd_set *readset, fd_set *writeset) argument
1856 channel_post_connecting(struct ssh *ssh, Channel *c, fd_set *readset, fd_set *writeset) argument
1929 channel_handle_rfd(struct ssh *ssh, Channel *c, fd_set *readset, fd_set *writeset) argument
1980 channel_handle_wfd(struct ssh *ssh, Channel *c, fd_set *readset, fd_set *writeset) argument
2074 channel_handle_efd_write(struct ssh *ssh, Channel *c, fd_set *readset, fd_set *writeset) argument
2103 channel_handle_efd_read(struct ssh *ssh, Channel *c, fd_set *readset, fd_set *writeset) argument
2135 channel_handle_efd(struct ssh *ssh, Channel *c, fd_set *readset, fd_set *writeset) argument
2184 channel_post_open(struct ssh *ssh, Channel *c, fd_set *readset, fd_set *writeset) argument
2220 channel_post_mux_client_read(struct ssh *ssh, Channel *c, fd_set *readset, fd_set *writeset) argument
2257 channel_post_mux_client_write(struct ssh *ssh, Channel *c, fd_set *readset, fd_set *writeset) argument
2280 channel_post_mux_client(struct ssh *ssh, Channel *c, fd_set *readset, fd_set *writeset) argument
2288 channel_post_mux_listener(struct ssh *ssh, Channel *c, fd_set *readset, fd_set *writeset) argument
2405 channel_handler(struct ssh *ssh, int table, fd_set *readset, fd_set *writeset, time_t *unpause_secs) argument
2514 channel_after_select(struct ssh *ssh, fd_set *readset, fd_set *writeset) argument
[all...]
H A Dclientloop.c1239 fd_set *readset = NULL, *writeset = NULL; local
1366 client_wait_until_can_do_something(ssh, &readset, &writeset,
1374 channel_after_select(ssh, readset, writeset);
1386 if (FD_ISSET(connection_out, writeset))
1402 free(writeset);
/freebsd-13-stable/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)) {
/freebsd-13-stable/contrib/ntp/lib/isc/unix/
H A Dsocket.c122 fd_set *writeset; member in struct:isc_socketwait
5823 swait_private.writeset = manager->write_fds_copy;
5827 swait_private.writeset, NULL, tvp);
5851 process_fds(manager, swait->maxfd, swait->readset, swait->writeset);

Completed in 206 milliseconds