/external/qemu/slirp/ |
if.c | 75 * and pass onto (*ttyp->if_input) 81 if_input(ttyp) 82 struct ttys *ttyp; 88 DEBUG_ARG("ttyp = %lx", (long)ttyp); 90 if_n = recv(ttyp->fd, (char *)if_inbuff, INBUFF_SIZE,0); 96 if (ttyp->up) 98 tty_detached(ttyp, 0); 104 ttyp->ones = 0; 105 if (++ttyp->zeros >= 5 [all...] |
debug.c | 85 ttystats(ttyp) 86 struct ttys *ttyp; 88 struct slirp_ifstats *is = &ttyp->ifstats; 99 lprint("Unit %d:\r\n", ttyp->unit); 102 ttyp->proto==PROTO_PPP?"PPP": 105 lprint(" %d baudrate\r\n", ttyp->baud); 106 lprint(" interface is %s\r\n", ttyp->up?"up":"down"); 107 lprint(" using fd %d, guardian pid is %d\r\n", ttyp->fd, ttyp->pid); 109 lprint(" towrite is %d bytes\r\n", ttyp->towrite) 342 struct ttys *ttyp; local [all...] |
misc.c | 496 struct ttys *ttyp; 508 if (NULL == (ttyp = tty_attach (0, slirp_tty))) { 512 ttyp->fd = 0; 513 ttyp->flags |= TTY_CTTY; 514 term_raw(ttyp);
|
/external/qemu/slirp-android/ |
if.c | 75 * and pass onto (*ttyp->if_input) 81 if_input(ttyp) 82 struct ttys *ttyp; 88 DEBUG_ARG("ttyp = %lx", (long)ttyp); 90 if_n = socket_recv(ttyp->fd, (char *)if_inbuff, INBUFF_SIZE); 96 if (ttyp->up) 98 tty_detached(ttyp, 0); 104 ttyp->ones = 0; 105 if (++ttyp->zeros >= 5 [all...] |
debug.c | 84 ttystats(ttyp) 85 struct ttys *ttyp; 87 struct slirp_ifstats *is = &ttyp->ifstats; 98 lprint("Unit %d:\r\n", ttyp->unit); 101 ttyp->proto==PROTO_PPP?"PPP": 104 lprint(" %d baudrate\r\n", ttyp->baud); 105 lprint(" interface is %s\r\n", ttyp->up?"up":"down"); 106 lprint(" using fd %d, guardian pid is %d\r\n", ttyp->fd, ttyp->pid); 108 lprint(" towrite is %d bytes\r\n", ttyp->towrite) [all...] |
misc.c | 460 struct ttys *ttyp; 472 if (NULL == (ttyp = tty_attach (0, slirp_tty))) { 476 ttyp->fd = 0; 477 ttyp->flags |= TTY_CTTY; 478 term_raw(ttyp);
|
/external/openssh/openbsd-compat/ |
bsd-openpty.c | 165 snprintf(ttbuf, sizeof(ttbuf), "/dev/ttyp%03d", i); 197 snprintf(ttbuf, sizeof(ttbuf), "/dev/ttyp%d", i);
|
/external/libppp/src/ |
tty.c | 560 struct ttyent *ttyp; local 564 for (slot = 1; (ttyp = getttyent()); ++slot) 565 if (!strcmp(ttyp->ty_name, p->name.base)) {
|
/external/dropbear/ |
sshpty.c | 203 snprintf(namebuf, namebuflen, "/dev/ttyp%d", i);
|
loginrec.c | 707 tty = ttyslot(); /* seems only to work for /dev/ttyp? style names */ [all...] |
/external/openssh/ |
loginrec.c | 866 tty = ttyslot(); /* seems only to work for /dev/ttyp? style names */ [all...] |