/external/openssh/ |
ssh-pkcs11-helper.c | 274 fd_set *rset, *wset; local 306 wset = xmalloc(set_size); 310 memset(wset, 0, set_size); 323 FD_SET(out, wset); 325 if (select(max+1, rset, wset, NULL, NULL) < 0) { 346 if (FD_ISSET(out, wset)) {
|
sftp-server.c | 1502 fd_set *rset, *wset; local [all...] |
/external/dnsmasq/src/ |
dnsmasq.c | 471 fd_set rset, wset, eset; local 474 FD_ZERO(&wset); 509 FD_SET(daemon->helperfd, &wset); 521 set_log_writer(&wset, &maxfd); 523 if (select(maxfd + 1, &rset, &wset, &eset, tp) < 0) { 526 FD_ZERO(&wset); 532 check_log_writer(&wset); 559 if (daemon->helperfd != -1 && FD_ISSET(daemon->helperfd, &wset)) helper_write(); 1058 fd_set rset, wset; local [all...] |
/external/mdnsresponder/mDNSShared/ |
dnsextd.c | 326 fd_set wset; local 333 FD_ZERO(&wset); 337 FD_SET( fd, &wset ); 338 selectval = select( fd+1, NULL, &wset, NULL, &timeout); 340 if (!selectval || !FD_ISSET(fd, &wset)) { Log("MySend - timeout"); return -1; } [all...] |