tag | line | file | source code |
termios | 106 | include/linux/tty.h | #define INTR_CHAR(tty) ((tty)->termios.c_cc[VINTR]) |
termios | 107 | include/linux/tty.h | #define QUIT_CHAR(tty) ((tty)->termios.c_cc[VQUIT]) |
termios | 108 | include/linux/tty.h | #define ERASE_CHAR(tty) ((tty)->termios.c_cc[VERASE]) |
termios | 109 | include/linux/tty.h | #define KILL_CHAR(tty) ((tty)->termios.c_cc[VKILL]) |
termios | 110 | include/linux/tty.h | #define EOF_CHAR(tty) ((tty)->termios.c_cc[VEOF]) |
termios | 111 | include/linux/tty.h | #define START_CHAR(tty) ((tty)->termios.c_cc[VSTART]) |
termios | 112 | include/linux/tty.h | #define STOP_CHAR(tty) ((tty)->termios.c_cc[VSTOP]) |
termios | 113 | include/linux/tty.h | #define SUSPEND_CHAR(tty) ((tty)->termios.c_cc[VSUSP]) |
termios | 115 | include/linux/tty.h | #define _L_FLAG(tty,f) ((tty)->termios.c_lflag & f) |
termios | 116 | include/linux/tty.h | #define _I_FLAG(tty,f) ((tty)->termios.c_iflag & f) |
termios | 117 | include/linux/tty.h | #define _O_FLAG(tty,f) ((tty)->termios.c_oflag & f) |
termios | 142 | include/linux/tty.h | #define C_SPEED(tty) ((tty)->termios.c_cflag & CBAUD) |
termios | 146 | include/linux/tty.h | struct termios termios; |
termios | 119 | kernel/chr_drv/serial.c | if (!(info->tty->termios.c_cflag & CLOCAL)) { |
termios | 123 | kernel/chr_drv/serial.c | if (info->tty->termios.c_cflag & CRTSCTS) |
termios | 336 | kernel/chr_drv/serial.c | cflag = info->tty->termios.c_cflag; |
termios | 326 | kernel/chr_drv/tty_io.c | time = 10L*tty->termios.c_cc[VTIME]; |
termios | 327 | kernel/chr_drv/tty_io.c | minimum = tty->termios.c_cc[VMIN]; |
termios | 111 | kernel/chr_drv/tty_ioctl.c | static int get_termios(struct tty_struct * tty, struct termios * termios) |
termios | 115 | kernel/chr_drv/tty_ioctl.c | verify_area(termios, sizeof (*termios)); |
termios | 116 | kernel/chr_drv/tty_ioctl.c | for (i=0 ; i< (sizeof (*termios)) ; i++) |
termios | 117 | kernel/chr_drv/tty_ioctl.c | put_fs_byte( ((char *)&tty->termios)[i] , i+(char *)termios ); |
termios | 121 | kernel/chr_drv/tty_ioctl.c | static int set_termios(struct tty_struct * tty, struct termios * termios, |
termios | 125 | kernel/chr_drv/tty_ioctl.c | unsigned short old_cflag = tty->termios.c_cflag; |
termios | 137 | kernel/chr_drv/tty_ioctl.c | for (i=0 ; i< (sizeof (*termios)) ; i++) |
termios | 138 | kernel/chr_drv/tty_ioctl.c | ((char *)&tty->termios)[i]=get_fs_byte(i+(char *)termios); |
termios | 139 | kernel/chr_drv/tty_ioctl.c | if (IS_A_SERIAL(channel) && tty->termios.c_cflag != old_cflag) |
termios | 150 | kernel/chr_drv/tty_ioctl.c | tmp_termio.c_iflag = tty->termios.c_iflag; |
termios | 151 | kernel/chr_drv/tty_ioctl.c | tmp_termio.c_oflag = tty->termios.c_oflag; |
termios | 152 | kernel/chr_drv/tty_ioctl.c | tmp_termio.c_cflag = tty->termios.c_cflag; |
termios | 153 | kernel/chr_drv/tty_ioctl.c | tmp_termio.c_lflag = tty->termios.c_lflag; |
termios | 154 | kernel/chr_drv/tty_ioctl.c | tmp_termio.c_line = tty->termios.c_line; |
termios | 156 | kernel/chr_drv/tty_ioctl.c | tmp_termio.c_cc[i] = tty->termios.c_cc[i]; |
termios | 170 | kernel/chr_drv/tty_ioctl.c | unsigned short old_cflag = tty->termios.c_cflag; |
termios | 182 | kernel/chr_drv/tty_ioctl.c | *(unsigned short *)&tty->termios.c_iflag = tmp_termio.c_iflag; |
termios | 183 | kernel/chr_drv/tty_ioctl.c | *(unsigned short *)&tty->termios.c_oflag = tmp_termio.c_oflag; |
termios | 184 | kernel/chr_drv/tty_ioctl.c | *(unsigned short *)&tty->termios.c_cflag = tmp_termio.c_cflag; |
termios | 185 | kernel/chr_drv/tty_ioctl.c | *(unsigned short *)&tty->termios.c_lflag = tmp_termio.c_lflag; |
termios | 186 | kernel/chr_drv/tty_ioctl.c | tty->termios.c_line = tmp_termio.c_line; |
termios | 188 | kernel/chr_drv/tty_ioctl.c | tty->termios.c_cc[i] = tmp_termio.c_cc[i]; |
termios | 189 | kernel/chr_drv/tty_ioctl.c | if (IS_A_SERIAL(channel) && tty->termios.c_cflag != old_cflag) |
termios | 253 | kernel/chr_drv/tty_ioctl.c | return get_termios(tty,(struct termios *) arg); |
termios | 261 | kernel/chr_drv/tty_ioctl.c | return set_termios(tty,(struct termios *) arg, dev); |