Lines Matching refs:c_cc
20 termios->c_cc[VINTR] = v.c_cc[_VINTR]; in user_termio_to_kernel_termios()
21 termios->c_cc[VQUIT] = v.c_cc[_VQUIT]; in user_termio_to_kernel_termios()
22 termios->c_cc[VERASE] = v.c_cc[_VERASE]; in user_termio_to_kernel_termios()
23 termios->c_cc[VKILL] = v.c_cc[_VKILL]; in user_termio_to_kernel_termios()
24 termios->c_cc[VEOL2] = v.c_cc[_VEOL2]; in user_termio_to_kernel_termios()
25 termios->c_cc[VSWTC] = v.c_cc[_VSWTC]; in user_termio_to_kernel_termios()
26 termios->c_cc[canon ? VEOF : VMIN] = v.c_cc[_VEOF]; in user_termio_to_kernel_termios()
27 termios->c_cc[canon ? VEOL : VTIME] = v.c_cc[_VEOL]; in user_termio_to_kernel_termios()
46 v.c_cc[_VINTR] = termios->c_cc[VINTR]; in kernel_termios_to_user_termio()
47 v.c_cc[_VQUIT] = termios->c_cc[VQUIT]; in kernel_termios_to_user_termio()
48 v.c_cc[_VERASE] = termios->c_cc[VERASE]; in kernel_termios_to_user_termio()
49 v.c_cc[_VKILL] = termios->c_cc[VKILL]; in kernel_termios_to_user_termio()
50 v.c_cc[_VEOF] = termios->c_cc[canon ? VEOF : VMIN]; in kernel_termios_to_user_termio()
51 v.c_cc[_VEOL] = termios->c_cc[canon ? VEOL : VTIME]; in kernel_termios_to_user_termio()
52 v.c_cc[_VEOL2] = termios->c_cc[VEOL2]; in kernel_termios_to_user_termio()
53 v.c_cc[_VSWTC] = termios->c_cc[VSWTC]; in kernel_termios_to_user_termio()