tag | line | file | source code |
tty_table | 200 | include/linux/tty.h | extern struct tty_struct tty_table[]; |
tty_table | 209 | include/linux/tty.h | (tty_table + ((nr) ? (((nr) < 64)? (nr)-1:(nr)) : fg_console)) |
tty_table | 903 | kernel/chr_drv/console.c | currcons = tty - tty_table; |
tty_table | 27 | kernel/chr_drv/pty.c | tty = tty_table + dev; |
tty_table | 44 | kernel/chr_drv/pty.c | tty = tty_table + dev; |
tty_table | 198 | kernel/chr_drv/serial.c | TTY_READ_FLUSH(tty_table+64); |
tty_table | 203 | kernel/chr_drv/serial.c | TTY_READ_FLUSH(tty_table+65); |
tty_table | 208 | kernel/chr_drv/serial.c | TTY_READ_FLUSH(tty_table+66); |
tty_table | 213 | kernel/chr_drv/serial.c | TTY_READ_FLUSH(tty_table+67); |
tty_table | 471 | kernel/chr_drv/serial.c | info->tty = (tty_table+64) + i; |
tty_table | 506 | kernel/chr_drv/serial.c | int line = tty - tty_table - 64; |
tty_table | 31 | kernel/chr_drv/tty_io.c | struct tty_struct tty_table[256]; |
tty_table | 38 | kernel/chr_drv/tty_io.c | #define con_table tty_table |
tty_table | 39 | kernel/chr_drv/tty_io.c | #define rs_table (64+tty_table) |
tty_table | 40 | kernel/chr_drv/tty_io.c | #define mpty_table (128+tty_table) |
tty_table | 41 | kernel/chr_drv/tty_io.c | #define spty_table (192+tty_table) |
tty_table | 128 | kernel/chr_drv/tty_io.c | sleep_if_empty(tty_table[fg_console].secondary); |
tty_table | 129 | kernel/chr_drv/tty_io.c | flush_input(&tty_table[fg_console]); |
tty_table | 640 | kernel/chr_drv/tty_io.c | tty_table[i] = (struct tty_struct) { |
tty_table | 242 | kernel/chr_drv/tty_ioctl.c | tty = tty_table + (dev ? ((dev < 64)? dev-1:dev) : fg_console); |
tty_table | 245 | kernel/chr_drv/tty_ioctl.c | other_tty = tty_table + PTY_OTHER(dev); |