Home
last modified time | relevance | path

Searched refs:readset (Results 1 – 4 of 4) sorted by relevance

/external/openssh/
Dserverloop.c148 notify_prepare(fd_set *readset) in notify_prepare() argument
151 FD_SET(notify_pipe[0], readset); in notify_prepare()
154 notify_done(fd_set *readset) in notify_done() argument
158 if (notify_pipe[0] != -1 && FD_ISSET(notify_pipe[0], readset)) in notify_done()
320 process_input(struct ssh *ssh, fd_set *readset, int connection_in) in process_input() argument
326 if (FD_ISSET(connection_in, readset)) { in process_input()
400 fd_set *readset = NULL, *writeset = NULL; in server_loop2() local
440 &readset, &writeset, &max_fd, &nalloc, rekey_timeout_ms); in server_loop2()
450 channel_after_select(ssh, readset, writeset); in server_loop2()
451 if (process_input(ssh, readset, connection_in) < 0) in server_loop2()
[all …]
Dchannels.c103 fd_set *readset, fd_set *writeset);
1067 fd_set *readset, fd_set *writeset) in channel_pre_listener() argument
1069 FD_SET(c->sock, readset); in channel_pre_listener()
1074 fd_set *readset, fd_set *writeset) in channel_pre_connecting() argument
1082 fd_set *readset, fd_set *writeset) in channel_pre_open() argument
1088 FD_SET(c->rfd, readset); in channel_pre_open()
1112 FD_SET(c->efd, readset); in channel_pre_open()
1195 fd_set *readset, fd_set *writeset) in channel_pre_x11_open() argument
1203 channel_pre_open(ssh, c, readset, writeset); in channel_pre_x11_open()
1219 Channel *c, fd_set *readset, fd_set *writeset) in channel_pre_mux_client() argument
[all …]
Dclientloop.c606 client_process_net_input(struct ssh *ssh, fd_set *readset) in client_process_net_input() argument
615 if (FD_ISSET(connection_in, readset)) { in client_process_net_input()
1230 fd_set *readset = NULL, *writeset = NULL; in client_loop() local
1357 client_wait_until_can_do_something(ssh, &readset, &writeset, in client_loop()
1365 channel_after_select(ssh, readset, writeset); in client_loop()
1368 client_process_net_input(ssh, readset); in client_loop()
1396 free(readset); in client_loop()
/external/iperf3/src/
Diperf_util.c141 fd_set readset; in is_closed() local
143 FD_ZERO(&readset); in is_closed()
144 FD_SET(fd, &readset); in is_closed()
148 if (select(fd+1, &readset, NULL, NULL, &tv) < 0) { in is_closed()