Lines Matching refs:termios
100 #define user_termio_to_kernel_termios(termios, termio) \ argument
104 (termios)->c_iflag = (0xffff0000 & ((termios)->c_iflag)) | tmp; \
106 (termios)->c_oflag = (0xffff0000 & ((termios)->c_oflag)) | tmp; \
108 (termios)->c_cflag = (0xffff0000 & ((termios)->c_cflag)) | tmp; \
110 (termios)->c_lflag = (0xffff0000 & ((termios)->c_lflag)) | tmp; \
111 copy_from_user((termios)->c_cc, (termio)->c_cc, NCC); \
120 #define kernel_termios_to_user_termio(termio, termios) \ argument
122 put_user((termios)->c_iflag, &(termio)->c_iflag); \
123 put_user((termios)->c_oflag, &(termio)->c_oflag); \
124 put_user((termios)->c_cflag, &(termio)->c_cflag); \
125 put_user((termios)->c_lflag, &(termio)->c_lflag); \
126 put_user((termios)->c_line, &(termio)->c_line); \
127 copy_to_user((termio)->c_cc, (termios)->c_cc, NCC); \
128 if (!((termios)->c_lflag & ICANON)) { \
129 put_user((termios)->c_cc[VMIN], &(termio)->c_cc[_VMIN]); \
130 put_user((termios)->c_cc[VTIME], &(termio)->c_cc[_VTIME]); \