tag | line | file | source code |
tmp_termio | 147 | kernel/chr_drv/tty_ioctl.c | struct termio tmp_termio; |
tmp_termio | 150 | kernel/chr_drv/tty_ioctl.c | tmp_termio.c_iflag = tty->termios.c_iflag; |
tmp_termio | 151 | kernel/chr_drv/tty_ioctl.c | tmp_termio.c_oflag = tty->termios.c_oflag; |
tmp_termio | 152 | kernel/chr_drv/tty_ioctl.c | tmp_termio.c_cflag = tty->termios.c_cflag; |
tmp_termio | 153 | kernel/chr_drv/tty_ioctl.c | tmp_termio.c_lflag = tty->termios.c_lflag; |
tmp_termio | 154 | kernel/chr_drv/tty_ioctl.c | tmp_termio.c_line = tty->termios.c_line; |
tmp_termio | 156 | kernel/chr_drv/tty_ioctl.c | tmp_termio.c_cc[i] = tty->termios.c_cc[i]; |
tmp_termio | 158 | kernel/chr_drv/tty_ioctl.c | put_fs_byte( ((char *)&tmp_termio)[i] , i+(char *)termio ); |
tmp_termio | 169 | kernel/chr_drv/tty_ioctl.c | struct termio tmp_termio; |
tmp_termio | 181 | kernel/chr_drv/tty_ioctl.c | ((char *)&tmp_termio)[i]=get_fs_byte(i+(char *)termio); |
tmp_termio | 182 | kernel/chr_drv/tty_ioctl.c | *(unsigned short *)&tty->termios.c_iflag = tmp_termio.c_iflag; |
tmp_termio | 183 | kernel/chr_drv/tty_ioctl.c | *(unsigned short *)&tty->termios.c_oflag = tmp_termio.c_oflag; |
tmp_termio | 184 | kernel/chr_drv/tty_ioctl.c | *(unsigned short *)&tty->termios.c_cflag = tmp_termio.c_cflag; |
tmp_termio | 185 | kernel/chr_drv/tty_ioctl.c | *(unsigned short *)&tty->termios.c_lflag = tmp_termio.c_lflag; |
tmp_termio | 186 | kernel/chr_drv/tty_ioctl.c | tty->termios.c_line = tmp_termio.c_line; |
tmp_termio | 188 | kernel/chr_drv/tty_ioctl.c | tty->termios.c_cc[i] = tmp_termio.c_cc[i]; |