Lines Matching refs:t_cursor
91 teken_assert(t->t_cursor.tp_row < t->t_winsize.tp_row); in teken_funcs_cursor()
92 teken_assert(t->t_cursor.tp_col < t->t_winsize.tp_col); in teken_funcs_cursor()
95 t->t_funcs->tf_cursor(t->t_softc, &t->t_cursor); in teken_funcs_cursor()
260 teken_assert(t->t_cursor.tp_row >= t->t_originreg.ts_begin); in teken_input_char()
261 teken_assert(t->t_cursor.tp_row < t->t_originreg.ts_end); in teken_input_char()
262 teken_assert(t->t_cursor.tp_row < t->t_winsize.tp_row); in teken_input_char()
263 teken_assert(t->t_cursor.tp_col < t->t_winsize.tp_col); in teken_input_char()
325 return (&t->t_cursor); in teken_get_cursor()
336 t->t_cursor = *p; in teken_set_cursor()
383 if (t->t_cursor.tp_row >= new->tp_row) in teken_trim_cursor_pos()
384 t->t_cursor.tp_row = new->tp_row - 1; in teken_trim_cursor_pos()
385 if (t->t_cursor.tp_col >= new->tp_col) in teken_trim_cursor_pos()
386 t->t_cursor.tp_col = new->tp_col - 1; in teken_trim_cursor_pos()