Searched refs:t_canq (Results 1 – 9 of 9) sorted by relevance
| /dragonfly/sys/kern/ |
| HD | tty_pty.c | 510 if (tp->t_canq.c_cc == 0) { in ptsread() 523 while (tp->t_canq.c_cc > 1 && ap->a_uio->uio_resid > 0) in ptsread() 524 if (ureadc(clist_getc(&tp->t_canq), ap->a_uio) < 0) { in ptsread() 528 if (tp->t_canq.c_cc == 1) in ptsread() 529 clist_getc(&tp->t_canq); in ptsread() 530 if (tp->t_canq.c_cc) { in ptsread() 962 (tp->t_canq.c_cc == 0) : in filt_ptcwrite() 963 ((tp->t_rawq.c_cc + tp->t_canq.c_cc < TTYHOG - 2) || in filt_ptcwrite() 964 (tp->t_canq.c_cc == 0 && (tp->t_lflag & ICANON))))) { in filt_ptcwrite() 965 kn->kn_data = tp->t_canq.c_cc + tp->t_rawq.c_cc; in filt_ptcwrite() [all …]
|
| HD | tty.c | 255 clist_free_cblocks(&tp->t_canq); in ttyclose() 427 if (tp->t_rawq.c_cc + tp->t_canq.c_cc > tp->t_ihiwat - 3 && in ttyinput() 428 (!ISSET(lflag, ICANON) || tp->t_canq.c_cc != 0) && in ttyinput() 458 if (tp->t_rawq.c_cc + tp->t_canq.c_cc > in ttyinput() 510 if (tp->t_rawq.c_cc + tp->t_canq.c_cc) in ttyinput() 671 if (tp->t_rawq.c_cc + tp->t_canq.c_cc >= MAX_INPUT) { in ttyinput() 697 clist_catq(&tp->t_rawq, &tp->t_canq); in ttyinput() 1098 if (tp->t_canq.c_ccmax > 0 && in ttioctl() 1100 clist_catq(&tp->t_rawq, &tp->t_canq); in ttioctl() 1106 clist_catq(&tp->t_canq, &tp->t_rawq); in ttioctl() [all …]
|
| /dragonfly/sys/sys/ |
| HD | tty.h | 77 struct clist t_canq; /* Device canonical queue. */ member 230 #define TSA_PTS_READ(tp) ((void *)&(tp)->t_canq)
|
| /dragonfly/sys/dev/misc/nmdm/ |
| HD | nmdm.c | 409 if (((tp->t_rawq.c_cc + tp->t_canq.c_cc) >= (TTYHOG-2)) in nmdmwrite() 410 && ((tp->t_canq.c_cc > 0) || !(tp->t_iflag&ICANON))) { in nmdmwrite()
|
| /dragonfly/sys/netgraph7/tty/ |
| HD | ng_tty.c | 231 clist_alloc_cblocks(&tp->t_canq, 0); in ngt_open()
|
| /dragonfly/sys/netgraph/tty/ |
| HD | ng_tty.c | 241 clist_alloc_cblocks(&tp->t_canq, 0); in ngt_open()
|
| /dragonfly/sys/netgraph7/bluetooth/drivers/h4/ |
| HD | ng_h4.c | 223 clist_alloc_cblocks(&tp->t_canq, 0); in ng_h4_open()
|
| /dragonfly/sys/net/sl/ |
| HD | if_sl.c | 283 clist_alloc_cblocks(&tp->t_canq, 0); in slopen()
|
| /dragonfly/usr.sbin/pstat/ |
| HD | pstat.c | 829 printf("%2d %3d ", tp->t_rawq.c_cc, tp->t_canq.c_cc); in ttyprt()
|