/system/core/toolbox/ |
cat.c | 151 raw_cat(int rfd) 173 while ((nr = read(rfd, buf, bsize)) > 0)
|
/external/clang/test/SemaCXX/ |
addr-of-overloaded-function.cpp | 14 int (&rfd)(double) = f; // selects f(double) variable
|
/system/core/adb/ |
fdevent.c | 370 fd_set rfd, wfd, efd; local 372 memcpy(&rfd, &read_fds, sizeof(fd_set)); 378 n = select(select_n, &rfd, &wfd, &efd, NULL); 391 FD_ZERO(&rfd); 401 n = fdevent_fd_check(&rfd); 406 if(FD_ISSET(i, &rfd)) { events |= FDE_READ; n--; }
|
/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...] |
/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/qemu/ |
posix-aio-compat.c | 57 int rfd, wfd; member in struct:PosixAioState 485 len = read(s->rfd, bytes, sizeof(bytes)); 644 s->rfd = fds[0]; 647 fcntl(s->rfd, F_SETFL, O_NONBLOCK); 650 qemu_aio_set_fd_handler(s->rfd, posix_aio_read, NULL, posix_aio_flush,
|
/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);
|