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.c475 if (tp->t_column > 0) in ttydisc_write_oproc()
476 tp->t_column--; in ttydisc_write_oproc()
481 scnt = 8 - (tp->t_column & 7); in ttydisc_write_oproc()
491 tp->t_column += scnt; in ttydisc_write_oproc()
492 MPASS((tp->t_column % 8) == 0); in ttydisc_write_oproc()
507 tp->t_column = tp->t_writepos = 0; in ttydisc_write_oproc()
517 if (CMP_FLAG(o, ONOCR) && tp->t_column == 0) in ttydisc_write_oproc()
522 tp->t_column = tp->t_writepos = 0; in ttydisc_write_oproc()
614 tp->t_writepos = tp->t_column; in ttydisc_write()
623 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.c1467 xt->xt_column = tp->t_column; in tty_to_xtty()
2555 db_printf("\tcolumn: %u\n", tp->t_column); in DB_SHOW_COMMAND()
2610 osiz - tp->t_outlow, MIN(tp->t_column, 99999), in DB_SHOW_ALL_COMMAND()
/freebsd/sys/sys/
H A Dtty.h113 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()