Home | History | Annotate | Download | only in kern

Lines Matching refs:c_cc

455 		if (tp->t_canq.c_cc == 0) {
466 while(error == 0 && tp->t_canq.c_cc > 1 && uio->uio_resid > 0) {
473 if (tp->t_canq.c_cc == 1)
475 cc = tp->t_canq.c_cc;
693 if (tp->t_outq.c_cc && !ISSET(tp->t_state, TS_TTSTOP))
749 if (tp->t_canq.c_cc)
751 while (uio->uio_resid > 0 && tp->t_canq.c_cc < TTYHOG) {
754 cc = uimin(cc, TTYHOG - tp->t_canq.c_cc);
802 int used = tp->t_rawq.c_cc + tp->t_canq.c_cc;
809 (tp->t_canq.c_cc > 0 || !canon)) {
869 ((tp->t_outq.c_cc > 0 && !ISSET(tp->t_state, TS_TTSTOP)) ||
877 (tp->t_canq.c_cc == 0) :
878 ((tp->t_rawq.c_cc + tp->t_canq.c_cc < TTYHOG-2) ||
879 (tp->t_canq.c_cc == 0 && ISSET(tp->t_lflag, ICANON)))))
926 ((tp->t_outq.c_cc > 0 && !ISSET(tp->t_state, TS_TTSTOP)) ||
932 * c_cc is number of characters after output post-processing;
936 kn->kn_data = tp->t_outq.c_cc;
982 (tp->t_canq.c_cc == 0) :
983 ((tp->t_rawq.c_cc + tp->t_canq.c_cc < TTYHOG-2) ||
984 (tp->t_canq.c_cc == 0 && ISSET(tp->t_lflag, ICANON)))));
992 - (tp->t_rawq.c_cc + tp->t_canq.c_cc);
1157 ndflush(&tp->t_outq, tp->t_outq.c_cc);
1175 *(int *)data = tp->t_outq.c_cc;