Lines Matching refs:stored_syscon_termios
426 static struct termios stored_syscon_termios; variable
2900 stored_syscon_termios = dflt_termios; in get_ioctl_syscon()
2914 stored_syscon_termios.c_iflag = iflags; in get_ioctl_syscon()
2915 stored_syscon_termios.c_oflag = oflags; in get_ioctl_syscon()
2916 stored_syscon_termios.c_cflag = cflags; in get_ioctl_syscon()
2917 stored_syscon_termios.c_lflag = lflags; in get_ioctl_syscon()
2919 stored_syscon_termios.c_cc[i] = (char)cc[i]; in get_ioctl_syscon()
2931 stored_syscon_termios.c_iflag = (ushort_t)iflags; in get_ioctl_syscon()
2932 stored_syscon_termios.c_oflag = (ushort_t)oflags; in get_ioctl_syscon()
2933 stored_syscon_termios.c_cflag = (ushort_t)cflags; in get_ioctl_syscon()
2934 stored_syscon_termios.c_lflag = (ushort_t)lflags; in get_ioctl_syscon()
2936 stored_syscon_termios.c_cc[i] = (char)cc[i]; in get_ioctl_syscon()
2943 stored_syscon_termios = dflt_termios; in get_ioctl_syscon()
2962 (void) fprintf(fp, "%x:%x:%x:%x:0", stored_syscon_termios.c_iflag, in write_ioctl_syscon()
2963 stored_syscon_termios.c_oflag, stored_syscon_termios.c_cflag, in write_ioctl_syscon()
2964 stored_syscon_termios.c_lflag); in write_ioctl_syscon()
2966 (void) fprintf(fp, ":%x", stored_syscon_termios.c_cc[i]); in write_ioctl_syscon()
3019 stored_syscon_termios.c_cflag = old_syscon_termios.c_cflag; in console()
3021 stored_syscon_termios.c_cflag &= ~HUPCL; in console()
3023 (void) tcsetattr(fd, TCSANOW, &stored_syscon_termios); in console()