Lines Matching refs:k_termios
35 struct __kernel_termios k_termios; in __tcgetattr() local
38 retval = INLINE_SYSCALL (ioctl, 3, fd, TCGETS, &k_termios); in __tcgetattr()
42 termios_p->c_iflag = k_termios.c_iflag; in __tcgetattr()
43 termios_p->c_oflag = k_termios.c_oflag; in __tcgetattr()
44 termios_p->c_cflag = k_termios.c_cflag; in __tcgetattr()
45 termios_p->c_lflag = k_termios.c_lflag; in __tcgetattr()
46 termios_p->c_line = k_termios.c_line; in __tcgetattr()
49 termios_p->c_ispeed = k_termios.c_ispeed; in __tcgetattr()
51 termios_p->c_ispeed = k_termios.c_cflag & (CBAUD | CBAUDEX); in __tcgetattr()
56 termios_p->c_ospeed = k_termios.c_ospeed; in __tcgetattr()
58 termios_p->c_ospeed = k_termios.c_cflag & (CBAUD | CBAUDEX); in __tcgetattr()
63 memset (__mempcpy (&termios_p->c_cc[0], &k_termios.c_cc[0], in __tcgetattr()
68 memcpy (&termios_p->c_cc[0], &k_termios.c_cc[0], in __tcgetattr()