Home
last modified time | relevance | path

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

/freebsd/sys/kern/
H A Dtty_ttydisc.c471 if (tp->t_column > 0) in ttydisc_write_oproc()
472 tp->t_column--; in ttydisc_write_oproc()
477 scnt = 8 - (tp->t_column & 7); in ttydisc_write_oproc()
487 tp->t_column += scnt; in ttydisc_write_oproc()
488 MPASS((tp->t_column % 8) == 0); in ttydisc_write_oproc()
503 tp->t_column = tp->t_writepos = 0; in ttydisc_write_oproc()
513 if (CMP_FLAG(o, ONOCR) && tp->t_column == 0) in ttydisc_write_oproc()
518 tp->t_column = tp->t_writepos = 0; in ttydisc_write_oproc()
610 tp->t_writepos = tp->t_column; in ttydisc_write()
619 tp->t_column += wlen; in ttydisc_write()
[all …]
H A Dtty_info.c308 sbuf_printf(&sb, "%sload: %d.%02d ", tp->t_column == 0 ? "" : "\n", in tty_info()
H A Dtty.c1303 xt->xt_column = tp->t_column; in tty_to_xtty()
2417 db_printf("\tcolumn: %u\n", tp->t_column); in DB_SHOW_COMMAND()
2472 osiz - tp->t_outlow, MIN(tp->t_column, 99999), in DB_SHOW_ALL_COMMAND()
/freebsd/sys/sys/
H A Dtty.h112 unsigned int t_column; /* (t) Current cursor position. */ member
/freebsd/usr.sbin/pstat/
H A Dpstat.c244 xt.xt_column = tty.t_column; in ttymode_kvm()