Home
last modified time | relevance | path

Searched refs:t_cursor (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/sys/teken/
H A Dteken_subr.h190 t->t_cursor.tp_row = t->t_cursor.tp_col = 0; in teken_subr_alignment_test()
211 t->t_cursor.tp_row--; in teken_subr_backspace()
214 t->t_cursor.tp_col--; in teken_subr_backspace()
220 t->t_cursor.tp_col--; in teken_subr_backspace()
238 t->t_cursor.tp_col = 0; in teken_subr_carriage_return()
264 t->t_cursor.tp_col--; in teken_subr_cursor_backward_tabulation()
307 t->t_cursor.tp_col++; in teken_subr_cursor_forward_tabulation()
636 t->t_cursor.tp_row++; in teken_subr_index()
720 t->t_cursor.tp_row++; in teken_subr_newline()
942 t->t_cursor.tp_row = t->t_cursor.tp_col = 0; in teken_subr_reset_dec_mode()
[all …]
H A Dteken.c93 teken_assert(t->t_cursor.tp_row < t->t_winsize.tp_row); in teken_funcs_cursor()
94 teken_assert(t->t_cursor.tp_col < t->t_winsize.tp_col); in teken_funcs_cursor()
97 t->t_funcs->tf_cursor(t->t_softc, &t->t_cursor); in teken_funcs_cursor()
264 teken_assert(t->t_cursor.tp_row < t->t_winsize.tp_row); in teken_input_char()
265 teken_assert(t->t_cursor.tp_col < t->t_winsize.tp_col); in teken_input_char()
327 return (&t->t_cursor); in teken_get_cursor()
338 t->t_cursor = *p; in teken_set_cursor()
385 if (t->t_cursor.tp_row >= new->tp_row) in teken_trim_cursor_pos()
386 t->t_cursor.tp_row = new->tp_row - 1; in teken_trim_cursor_pos()
387 if (t->t_cursor.tp_col >= new->tp_col) in teken_trim_cursor_pos()
[all …]
H A Dteken.h143 teken_pos_t t_cursor; member