Home
last modified time | relevance | path

Searched refs:t_cc (Results 1 – 6 of 6) sorted by relevance

/dflybsd-src/sys/kern/
H A Dtty.c434 cc = tp->t_cc; in ttyinput()
1122 if (t->c_cc[VMIN] != tp->t_cc[VMIN] || in ttioctl()
1123 t->c_cc[VTIME] != tp->t_cc[VTIME]) in ttioctl()
1125 bcopy(t->c_cc, tp->t_cc, sizeof(t->c_cc)); in ttioctl()
1374 if (nread < tp->t_cc[VMIN] && tp->t_cc[VTIME] == 0) in ttnread()
1524 if (ISSET(tp->t_iflag, IXOFF) && tp->t_cc[VSTOP] != _POSIX_VDISABLE && in ttyblock()
1525 clist_putc(tp->t_cc[VSTOP], &tp->t_outq) != 0) in ttyblock()
1541 if (ISSET(tp->t_iflag, IXOFF) && tp->t_cc[VSTART] != _POSIX_VDISABLE && in ttyunblock()
1542 clist_putc(tp->t_cc[VSTART], &tp->t_outq) != 0) in ttyunblock()
1681 cc_t *cc = tp->t_cc; in ttread()
[all …]
H A Dtty_pty.c1137 u_char *cc = tp->t_cc; in ptyioctl()
/dflybsd-src/sys/sys/
H A Dtty.h116 #define t_cc t_termios.c_cc macro
/dflybsd-src/sys/bus/u4b/serial/
H A Dusb_serial.c2044 || tp->t_cc[VSTART] == tp->t_cc[VSTOP])) { in ucom_put_data()
/dflybsd-src/sys/dev/serial/sio/
H A Dsio.c2094 dt->c_cc[cc] = tp->t_cc[cc]; in sioioctl()
/dflybsd-src/sys/dev/misc/syscons/
H A Dsyscons.c743 tp->t_cc[VERASE] = key.key.map[0]; in scopen()