Lines Matching refs:termios
16 struct ktermios *termios) in kernel_termios_to_user_termio() argument
20 v.c_iflag = termios->c_iflag; in kernel_termios_to_user_termio()
21 v.c_oflag = termios->c_oflag; in kernel_termios_to_user_termio()
22 v.c_cflag = termios->c_cflag; in kernel_termios_to_user_termio()
23 v.c_lflag = termios->c_lflag; in kernel_termios_to_user_termio()
24 v.c_line = termios->c_line; in kernel_termios_to_user_termio()
25 memcpy(v.c_cc, termios->c_cc, NCC); in kernel_termios_to_user_termio()
27 v.c_cc[_VMIN] = termios->c_cc[VMIN]; in kernel_termios_to_user_termio()
28 v.c_cc[_VTIME] = termios->c_cc[VTIME]; in kernel_termios_to_user_termio()
78 struct termios __user *u) in user_termios_to_kernel_termios_1()
97 int kernel_termios_to_user_termios_1(struct termios __user *u, in kernel_termios_to_user_termios_1()