Home
last modified time | relevance | path

Searched refs:tbp (Results 1 – 5 of 5) sorted by relevance

/original-bsd/sys/kern/
H A Dtty_tb.c79 register struct tb *tbp; local
84 for (tbp = tb; tbp < &tb[NTBS]; tbp++)
85 if (tbp->tbflags == 0)
87 if (tbp >= &tb[NTBS])
90 tp->t_cp = tbp->cbuf;
92 bzero((caddr_t)&tbp->rets, sizeof (tbp->rets));
93 tp->T_LINEP = (caddr_t)tbp;
159 tp->t_cp = tbp->cbuf;
167 (*tc->tbc_decode)(tc, tbp->cbuf, &tbp->rets);
303 tbp->tbflags &= ~TBTYPE;
[all …]
H A Dvfs_cluster.c253 struct buf *tbp; local
314 brelse(tbp);
333 tbp->b_blkno = bn;
393 struct buf **bpp, *tbp; local
414 tbp = *bpp;
422 biodone(tbp);
579 struct buf *bp, *tbp; local
658 brelse(tbp);
662 tbp = last_bp;
671 tbp->b_blkno);
[all …]
/original-bsd/sys/dev/scsi/
H A Dsd.c364 struct buf *tbp; local
368 tbp = (struct buf *)malloc(sizeof *tbp, M_DEVBUF, M_WAITOK);
369 bzero((caddr_t)tbp, sizeof *tbp);
370 tbp->b_proc = curproc;
371 tbp->b_dev = bp->b_dev;
390 tbp->b_bcount = bsize;
396 sdstrategy(tbp);
397 biowait(tbp);
415 tbp->b_blkno = bn;
425 sdstrategy(tbp);
[all …]
/original-bsd/usr.bin/telnet/
H A Dtelnet.c1991 unsigned char *tbp; in telsnd() local
2005 tbp = ttyiring.consume; in telsnd()
2011 c = *tbp++ & 0xff, sc = strip(c), tcc--; count++; in telsnd()
2032 command(0, (char *)tbp, tcc); in telsnd()
2041 --tbp; in telsnd()
2052 if (tcc && strip(*tbp) == escape) { in telsnd()
2053 tbp++; in telsnd()
2058 command(0, (char *)tbp, tcc); in telsnd()
2069 if (tcc > 0 && strip(*tbp) == echoc) { in telsnd()
2070 tcc--; tbp++; count++; in telsnd()
/original-bsd/usr.bin/tn3270/
H A Dtelnet.c200 static char tibuf[BUFSIZ], *tbp; variable
1028 tbp = tibuf; in tninit()
2633 tbp = tibuf; /* nothing left, reset */
2635 c = TerminalRead(tin, tbp, tibuf+sizeof tibuf - tbp);
2643 *tbp = ntc.t_eofc;
2659 c = DataFromTerminal(tbp, tcc);
2664 tbp += c;
2675 c = *tbp++ & 0xff, sc = strip(c), tcc--;
2682 if (tcc > 0 && strip(*tbp) == echoc) {
2683 tbp++;