Searched refs:writesetp (Results 1 – 3 of 3) sorted by relevance
/external/openssh/ |
D | serverloop.c | 222 fd_set **readsetp, fd_set **writesetp, int *maxfdp, in wait_until_can_do_something() argument 233 channel_prepare_select(ssh, readsetp, writesetp, maxfdp, in wait_until_can_do_something() 270 FD_SET(connection_out, *writesetp); in wait_until_can_do_something() 289 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp); in wait_until_can_do_something() 293 memset(*writesetp, 0, *nallocp); in wait_until_can_do_something()
|
D | clientloop.c | 493 fd_set **readsetp, fd_set **writesetp, in client_wait_until_can_do_something() argument 502 channel_prepare_select(ssh, readsetp, writesetp, maxfdp, in client_wait_until_can_do_something() 510 memset(*writesetp, 0, *nallocp); in client_wait_until_can_do_something() 518 FD_SET(connection_out, *writesetp); in client_wait_until_can_do_something() 551 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp); in client_wait_until_can_do_something() 559 memset(*writesetp, 0, *nallocp); in client_wait_until_can_do_something()
|
D | channels.c | 2495 channel_prepare_select(struct ssh *ssh, fd_set **readsetp, fd_set **writesetp, argument 2513 *writesetp = xreallocarray(*writesetp, nfdset, sizeof(fd_mask)); 2518 memset(*writesetp, 0, sz); 2521 channel_handler(ssh, CHAN_PRE, *readsetp, *writesetp,
|