/external/openssh/ |
D | serverloop.c | 132 notify_prepare(fd_set *readset) in notify_prepare() argument 135 FD_SET(notify_pipe[0], readset); in notify_prepare() 138 notify_done(fd_set *readset) in notify_done() argument 142 if (notify_pipe[0] != -1 && FD_ISSET(notify_pipe[0], readset)) in notify_done() 282 process_input(fd_set *readset, int connection_in) in process_input() argument 289 if (FD_ISSET(connection_in, readset)) { in process_input() 354 fd_set *readset = NULL, *writeset = NULL; in server_loop2() local 392 &readset, &writeset, &max_fd, &nalloc, rekey_timeout_ms); in server_loop2() 402 channel_after_select(readset, writeset); in server_loop2() 403 if (process_input(readset, connection_in) < 0) in server_loop2() [all …]
|
D | channels.c | 879 typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset); 885 channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset) in channel_pre_listener() argument 887 FD_SET(c->sock, readset); in channel_pre_listener() 892 channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset) in channel_pre_connecting() argument 899 channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset) in channel_pre_open_13() argument 902 FD_SET(c->sock, readset); in channel_pre_open_13() 908 channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset) in channel_pre_open() argument 916 FD_SET(c->rfd, readset); in channel_pre_open() 939 FD_SET(c->efd, readset); in channel_pre_open() 946 channel_pre_input_draining(Channel *c, fd_set *readset, fd_set *writeset) in channel_pre_input_draining() argument [all …]
|
D | clientloop.c | 756 client_process_net_input(fd_set *readset) in client_process_net_input() argument 765 if (FD_ISSET(connection_in, readset)) { in client_process_net_input() 1329 client_process_input(fd_set *readset) in client_process_input() argument 1335 if (FD_ISSET(fileno(stdin), readset)) { in client_process_input() 1504 fd_set *readset = NULL, *writeset = NULL; in client_loop() local 1660 client_wait_until_can_do_something(&readset, &writeset, in client_loop() 1668 channel_after_select(readset, writeset); in client_loop() 1671 client_process_net_input(readset); in client_loop() 1678 client_process_input(readset); in client_loop() 1705 free(readset); in client_loop()
|
D | ssh-agent.c | 1071 after_select(fd_set *readset, fd_set *writeset) in after_select() argument 1086 if (FD_ISSET(sockets[i].fd, readset)) { in after_select() 1130 if (FD_ISSET(sockets[i].fd, readset)) { in after_select()
|
/external/syslinux/core/lwip/src/api/ |
D | sockets.c | 92 fd_set *readset; member 1075 lwip_select(int maxfdp1, fd_set *readset, fd_set *writeset, fd_set *exceptset, argument 1088 maxfdp1, (void *)readset, (void *) writeset, (void *) exceptset, 1094 nready = lwip_selscan(maxfdp1, readset, writeset, exceptset, &lreadset, &lwriteset, &lexceptset); 1112 select_cb.readset = readset; 1140 if ((readset && FD_ISSET(i, readset)) || 1154 … nready = lwip_selscan(maxfdp1, readset, writeset, exceptset, &lreadset, &lwriteset, &lexceptset); 1172 if ((readset && FD_ISSET(i, readset)) || 1209 … nready = lwip_selscan(maxfdp1, readset, writeset, exceptset, &lreadset, &lwriteset, &lexceptset); 1215 if (readset) { [all …]
|
/external/syslinux/core/lwip/src/include/lwip/ |
D | sockets.h | 338 int lwip_select(int maxfdp1, fd_set *readset, fd_set *writeset, fd_set *exceptset,
|
/external/syslinux/core/lwip/ |
D | CHANGELOG | 440 * sockets.c: Fixed bug #29332: lwip_select() processes readset incorrectly
|