Home
last modified time | relevance | path

Searched refs:t_column (Results 1 – 2 of 2) sorted by relevance

/xnu-8796.121.2/bsd/kern/
H A Dtty.c762 tp->t_rocol = tp->t_column; in ttyinput()
771 i = tp->t_column; in ttyinput()
777 i = min(2, tp->t_column - i); in ttyinput()
852 col = c = 8 - (tp->t_column & 7); in ttyoutput()
858 tp->t_column += c; in ttyoutput()
881 else if (c == '\r' && ISSET(tp->t_oflag, ONOCR) && tp->t_column == 0) { in ttyoutput()
890 col = tp->t_column; in ttyoutput()
910 tp->t_column = col; in ttyoutput()
2501 tp->t_column += ce; in ttwrite()
2613 savecol = tp->t_column; in ttyrub()
[all …]
/xnu-8796.121.2/bsd/sys/
H A Dtty.h142 int t_column; /* Tty output column. */ member