Searched refs:rfd (Results 1 - 10 of 10) sorted by relevance

/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
H A DChannelManager.java478 RemoteForwardingData rfd = new RemoteForwardingData();
480 rfd.bindAddress = bindAddress;
481 rfd.bindPort = bindPort;
482 rfd.targetAddress = targetAddress;
483 rfd.targetPort = targetPort;
494 remoteForwardings.put(key, rfd);
516 remoteForwardings.remove(rfd);
526 RemoteForwardingData rfd = null;
530 rfd = remoteForwardings.get(new Integer(bindPort));
532 if (rfd
[all...]
/external/libxml2/
H A Dnanoftp.c738 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...]
H A Dnanohttp.c524 fd_set rfd;
610 FD_ZERO(&rfd);
617 FD_SET(ctxt->fd, &rfd);
623 if ((select(ctxt->fd + 1, &rfd, NULL, NULL, &tv) < 1)
/external/qemu/telephony/
H A Dsysdeps_posix.c423 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/openssh/
H A Dchannels.c224 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...]
H A Dchannels.h97 int rfd; /* read fd */ member in struct:Channel
102 int isatty; /* rfd is a tty */
H A Dnchan.c526 if (channel_close_fd(&c->rfd) < 0)
529 c->self, c->rfd, strerror(errno));
H A Dmux.c1230 cctx->term, &cctx->tio, c->rfd, &cctx->cmd, cctx->env);
/external/qemu/
H A Dposix-aio-compat.c57 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/clang/test/SemaCXX/
H A Daddr-of-overloaded-function.cpp14 int (&rfd)(double) = f; // selects f(double) variable

Completed in 746 milliseconds