Searched defs:rfd (Results 1 - 6 of 6) sorted by relevance
/external/clang/test/SemaCXX/ |
H A D | addr-of-overloaded-function.cpp | 14 int (&rfd)(double) = f; // selects f(double) variable
|
/external/openssh/ |
H A D | channels.h | 97 int rfd; /* read fd */ member in struct:Channel 102 int isatty; /* rfd is a tty */
|
H A D | channels.c | 224 channel_register_fds(Channel *c, int rfd, int wfd, int efd, argument 228 channel_max_fd = MAX(channel_max_fd, rfd); 232 if (rfd != -1) 233 fcntl(rfd, F_SETFD, FD_CLOEXEC); 234 if (wfd != -1 && wfd != rfd) 236 if (efd != -1 && efd != rfd && efd != wfd) 239 c->rfd = rfd; 241 c->sock = (rfd == wfd) ? rfd 265 channel_new(char *ctype, int type, int rfd, int wfd, int efd, u_int window, u_int maxpack, int extusage, char *remote_name, int nonblock) argument 759 channel_set_fds(int id, int rfd, int wfd, int efd, int extusage, int nonblock, int is_tty, u_int window_max) argument [all...] |
/external/qemu/ |
H A D | 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,
|
/external/qemu/telephony/ |
H A D | 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/ |
H A D | nanoftp.c | 738 fd_set rfd; local 744 FD_ZERO(&rfd); 745 FD_SET(ctxt->controlFd, &rfd); 746 switch(select(ctxt->controlFd + 1, &rfd, NULL, NULL, &tv)) { 1543 fd_set rfd, efd; local 1551 FD_ZERO(&rfd); 1552 FD_SET(ctxt->controlFd, &rfd); 1555 res = select(ctxt->controlFd + 1, &rfd, NULL, &efd, &tv); 1725 fd_set rfd, efd; local 1766 FD_ZERO(&rfd); 1899 fd_set rfd; local [all...] |
Completed in 172 milliseconds