Home
last modified time | relevance | path

Searched refs:goto_pos (Results 1 – 2 of 2) sorted by relevance

/linux-6.1.9/drivers/accessibility/speakup/
Dmain.c1983 goto_pos = simple_strtoul(goto_buf, &cp, 10); in handle_goto()
1987 goto_pos += spk_x; in handle_goto()
1988 else if (goto_pos > 0) in handle_goto()
1989 goto_pos--; in handle_goto()
1991 if (goto_pos >= vc->vc_cols) in handle_goto()
1992 goto_pos = vc->vc_cols - 1; in handle_goto()
1996 goto_pos += spk_y; in handle_goto()
1997 else if (goto_pos > 0) in handle_goto()
1998 goto_pos--; in handle_goto()
2000 if (goto_pos >= vc->vc_rows) in handle_goto()
[all …]
Dspk_types.h95 #define goto_pos (speakup_console[vc->vc_num]->go_pos) macro