/system/core/adb/ |
fdevent.c | 281 fd_set rfd, wfd, efd; local 283 memcpy(&rfd, &read_fds, sizeof(fd_set)); 287 n = select(select_n, &rfd, &wfd, &efd, 0); 297 if(FD_ISSET(i, &rfd)) events |= FDE_READ;
|
/bionic/libc/bionic/ |
fts.c | 206 int rfd, error = 0; local 223 rfd = ISSET(FTS_NOCHDIR) ? -1 : sp->fts_rfd; 234 if (rfd != -1) { 236 error = fchdir(rfd); 238 (void)close(rfd);
|
/external/qemu/block/ |
raw-posix.c | 489 int rfd, wfd; member in struct:PosixAioState 504 len = read(s->rfd, bytes, sizeof(bytes)); 590 s->rfd = fds[0]; 593 fcntl(s->rfd, F_SETFL, O_NONBLOCK); 596 qemu_aio_set_fd_handler(s->rfd, posix_aio_read, NULL, posix_aio_flush, s); [all...] |
/external/qemu/telephony/ |
sysdeps_posix.c | 423 fd_set rfd, wfd, efd; local 427 memcpy(&rfd, &_s_fdsets[0], sizeof(fd_set)); 446 n = select( _s_maxfd+1, &rfd, &wfd, &efd, timeout); 462 if(FD_ISSET(i, &rfd)) events |= SYS_EVENT_READ;
|
/external/libxml2/ |
nanoftp.c | 737 fd_set rfd; local 743 FD_ZERO(&rfd); 744 FD_SET(ctxt->controlFd, &rfd); 745 switch(select(ctxt->controlFd + 1, &rfd, NULL, NULL, &tv)) { 1542 fd_set rfd, efd; local 1724 fd_set rfd, efd; local 1898 fd_set rfd; local [all...] |
nanohttp.c | 504 fd_set rfd; local 575 FD_ZERO(&rfd); 580 FD_SET(ctxt->fd, &rfd); 585 if ( (select(ctxt->fd+1, &rfd, NULL, NULL, &tv)<1) [all...] |