Searched refs:t_winsize (Results 1 - 7 of 7) sorted by relevance

/freebsd-11-stable/sys/teken/
H A Dteken_subr.h94 teken_assert(t->t_cursor.tp_row <= t->t_winsize.tp_row);
95 teken_assert(t->t_scrollreg.ts_end <= t->t_winsize.tp_row);
107 tr.tr_end.tp_col = t->t_winsize.tp_col;
120 tr.tr_end.tp_col = t->t_winsize.tp_col;
131 tr.tr_end.tp_col = t->t_winsize.tp_col;
144 tr.tr_end.tp_col = t->t_winsize.tp_col;
190 t->t_scrollreg.ts_end = t->t_winsize.tp_row;
197 tr.tr_end = t->t_winsize;
210 t->t_cursor.tp_col = t->t_winsize.tp_col - 1;
288 if (t->t_cursor.tp_col + ncols >= t->t_winsize
[all...]
H A Dteken.c84 teken_assert(t->t_cursor.tp_row < t->t_winsize.tp_row);
85 teken_assert(t->t_cursor.tp_col < t->t_winsize.tp_col);
95 teken_assert(p->tp_row < t->t_winsize.tp_row);
96 teken_assert(p->tp_col < t->t_winsize.tp_col);
107 teken_assert(r->tr_end.tp_row <= t->t_winsize.tp_row);
109 teken_assert(r->tr_end.tp_col <= t->t_winsize.tp_col);
119 teken_assert(r->tr_end.tp_row <= t->t_winsize.tp_row);
121 teken_assert(r->tr_end.tp_col <= t->t_winsize.tp_col);
122 teken_assert(p->tp_row + (r->tr_end.tp_row - r->tr_begin.tp_row) <= t->t_winsize.tp_row);
123 teken_assert(p->tp_col + (r->tr_end.tp_col - r->tr_begin.tp_col) <= t->t_winsize
[all...]
H A Dteken.h139 teken_pos_t t_winsize; member in struct:__teken
/freebsd-11-stable/sys/sys/
H A Dtty.h111 struct winsize t_winsize; /* (t) Window size. */ member in struct:tty
/freebsd-11-stable/sys/kern/
H A Dtty.c1580 if (memcmp(&tp->t_winsize, wsz, sizeof(*wsz)) == 0)
1582 tp->t_winsize = *wsz;
1902 *(struct winsize*)data = tp->t_winsize;
2342 tp->t_winsize.ws_row, tp->t_winsize.ws_col,
2343 tp->t_winsize.ws_xpixel, tp->t_winsize.ws_ypixel);
/freebsd-11-stable/sys/i386/ibcs2/
H A Dibcs2_ioctl.c552 /* p->p_session->s_ttyp->t_winsize.ws_col; XXX */
554 /* p->p_session->s_ttyp->t_winsize.ws_row; XXX */
556 p->p_session->s_ttyp->t_winsize.ws_xpixel;
558 p->p_session->s_ttyp->t_winsize.ws_ypixel;
/freebsd-11-stable/sys/dev/syscons/
H A Dsyscons.c736 if (!tp->t_winsize.ws_col && !tp->t_winsize.ws_row) {
737 tp->t_winsize.ws_col = scp->xsize;
738 tp->t_winsize.ws_row = scp->ysize;

Completed in 86 milliseconds