Lines Matching refs:termio
17 * Translate a "termio" structure into a "termios". Ugh.
19 #define SET_LOW_TERMIOS_BITS(termios, termio, x) { \
21 get_user(__tmp,&(termio)->x); \
25 #define user_termio_to_kernel_termios(termios, termio) \
27 SET_LOW_TERMIOS_BITS(termios, termio, c_iflag); \
28 SET_LOW_TERMIOS_BITS(termios, termio, c_oflag); \
29 SET_LOW_TERMIOS_BITS(termios, termio, c_cflag); \
30 SET_LOW_TERMIOS_BITS(termios, termio, c_lflag); \
31 copy_from_user((termios)->c_cc, (termio)->c_cc, NCC); \
35 * Translate a "termios" structure into a "termio". Ugh.
37 #define kernel_termios_to_user_termio(termio, termios) \
39 put_user((termios)->c_iflag, &(termio)->c_iflag); \
40 put_user((termios)->c_oflag, &(termio)->c_oflag); \
41 put_user((termios)->c_cflag, &(termio)->c_cflag); \
42 put_user((termios)->c_lflag, &(termio)->c_lflag); \
43 put_user((termios)->c_line, &(termio)->c_line); \
44 copy_to_user((termio)->c_cc, (termios)->c_cc, NCC); \