| tag | line | file | source code |
| line | 20 | include/linux/serial.h | int line; /* The serial line (or base */ |
| line | 50 | include/linux/serial.h | int line; |
| line | 73 | include/linux/tty.h | int line; |
| line | 110 | include/linux/tty.h | #define SL_TO_DEV(line) ((line) | 0x40) |
| line | 184 | include/linux/tty.h | short line; |
| line | 294 | include/linux/tty.h | extern void change_speed(unsigned int line); |
| line | 162 | init/main.c | static void parse_options(char *line) |
| line | 167 | init/main.c | if (!*line) |
| line | 171 | init/main.c | next = line; |
| line | 172 | init/main.c | while (line = next) { |
| line | 173 | init/main.c | if (next = strchr(line,' ')) |
| line | 178 | init/main.c | if (!strncmp(line,"root=",5)) { |
| line | 179 | init/main.c | ROOT_DEV = simple_strtoul(line+5,NULL,16); |
| line | 186 | init/main.c | if (strchr(line,'=')) { |
| line | 189 | init/main.c | envp_init[++envs] = line; |
| line | 193 | init/main.c | argv_init[++args] = line; |
| line | 909 | kernel/chr_drv/console.c | currcons = tty->line - 1; |
| line | 31 | kernel/chr_drv/pty.c | if (IS_A_PTY_MASTER(tty->line)) { |
| line | 50 | kernel/chr_drv/serial.c | static void UART_ISR_proc(async_ISR ISR, int line); |
| line | 51 | kernel/chr_drv/serial.c | static void FourPort_ISR_proc(async_ISR ISR, int line); |
| line | 120 | kernel/chr_drv/serial.c | static inline void rs_sched_event(int line, |
| line | 125 | kernel/chr_drv/serial.c | rs_event |= 1 << line; |
| line | 142 | kernel/chr_drv/serial.c | static void UART_ISR_proc(async_ISR ISR, int line) |
| line | 145 | kernel/chr_drv/serial.c | struct async_struct * info = rs_table + line; |
| line | 181 | kernel/chr_drv/serial.c | rs_sched_event(line, info, RS_EVENT_DO_SAK); |
| line | 185 | kernel/chr_drv/serial.c | rs_sched_event(line, info, RS_EVENT_BREAK_INT); |
| line | 209 | kernel/chr_drv/serial.c | rs_sched_event(line, info, RS_EVENT_READ_PROCESS); |
| line | 233 | kernel/chr_drv/serial.c | rs_sched_event(line, info, |
| line | 239 | kernel/chr_drv/serial.c | rs_write_active |= 1 << line; |
| line | 241 | kernel/chr_drv/serial.c | set_bit(line, &rs_write_active); |
| line | 250 | kernel/chr_drv/serial.c | rs_sched_event(line, info, RS_EVENT_HUP_PGRP); |
| line | 274 | kernel/chr_drv/serial.c | static void FourPort_ISR_proc(async_ISR ISR, int line) |
| line | 281 | kernel/chr_drv/serial.c | for (i = line; ivec; i++) { |
| line | 298 | kernel/chr_drv/serial.c | (p->ISR_proc)(p, p->line); |
| line | 372 | kernel/chr_drv/serial.c | clear_bit(info->line, &rs_write_active); |
| line | 407 | kernel/chr_drv/serial.c | info = rs_table + DEV_TO_SL(tty->line); |
| line | 408 | kernel/chr_drv/serial.c | if (!test_bit(info->line, &rs_write_active)) { |
| line | 410 | kernel/chr_drv/serial.c | UART_ISR_proc(info->ISR, info->line); |
| line | 422 | kernel/chr_drv/serial.c | printk("throttle tty%d: %d (%d, %d)....\n", DEV_TO_SL(tty->line), |
| line | 427 | kernel/chr_drv/serial.c | info = rs_table + DEV_TO_SL(tty->line); |
| line | 439 | kernel/chr_drv/serial.c | info = rs_table + DEV_TO_SL(tty->line); |
| line | 468 | kernel/chr_drv/serial.c | int irq, line; |
| line | 470 | kernel/chr_drv/serial.c | line = DEV_TO_SL(tty->line); |
| line | 471 | kernel/chr_drv/serial.c | if ((line < 0) || (line >= NR_PORTS)) |
| line | 474 | kernel/chr_drv/serial.c | info = rs_table + line; |
| line | 479 | kernel/chr_drv/serial.c | rs_write_active &= ~(1 << line); |
| line | 480 | kernel/chr_drv/serial.c | rs_event &= ~(1 << line); |
| line | 482 | kernel/chr_drv/serial.c | clear_bit(line, &rs_write_active); |
| line | 483 | kernel/chr_drv/serial.c | clear_bit(line, &rs_event); |
| line | 577 | kernel/chr_drv/serial.c | void change_speed(unsigned int line) |
| line | 585 | kernel/chr_drv/serial.c | if (line >= NR_PORTS) |
| line | 587 | kernel/chr_drv/serial.c | info = rs_table + line; |
| line | 645 | kernel/chr_drv/serial.c | tmp.line = info->line; |
| line | 722 | kernel/chr_drv/serial.c | change_speed(info->line); |
| line | 785 | kernel/chr_drv/serial.c | int line; |
| line | 788 | kernel/chr_drv/serial.c | line = DEV_TO_SL(tty->line); |
| line | 789 | kernel/chr_drv/serial.c | if (line < 0 || line >= NR_PORTS) |
| line | 791 | kernel/chr_drv/serial.c | info = rs_table + line; |
| line | 830 | kernel/chr_drv/serial.c | int irq, retval, line; |
| line | 837 | kernel/chr_drv/serial.c | line = DEV_TO_SL(tty->line); |
| line | 838 | kernel/chr_drv/serial.c | if ((line < 0) || (line >= NR_PORTS)) |
| line | 840 | kernel/chr_drv/serial.c | info = rs_table + line; |
| line | 873 | kernel/chr_drv/serial.c | change_speed(info->line); |
| line | 1011 | kernel/chr_drv/serial.c | info->line = i; |
| line | 1018 | kernel/chr_drv/serial.c | if (!info->ISR->line) { |
| line | 1019 | kernel/chr_drv/serial.c | info->ISR->line = i; |
| line | 1027 | kernel/chr_drv/serial.c | printk("ttys%d%s at 0x%04x (irq = %d)", info->line, |
| line | 55 | kernel/chr_drv/tty_io.c | int initialize_tty_struct(struct tty_struct *tty, int line); |
| line | 131 | kernel/chr_drv/tty_io.c | tty->line); |
| line | 788 | kernel/chr_drv/tty_io.c | int line = tty->line; |
| line | 798 | kernel/chr_drv/tty_io.c | if (((*p)->tty == line) || |
| line | 805 | kernel/chr_drv/tty_io.c | (MINOR(filp->f_rdev) == line)) { |
| line | 818 | kernel/chr_drv/tty_io.c | int initialize_tty_struct(struct tty_struct *tty, int line) |
| line | 823 | kernel/chr_drv/tty_io.c | tty->line = line; |
| line | 827 | kernel/chr_drv/tty_io.c | if (!tty_termios[line]) { |
| line | 828 | kernel/chr_drv/tty_io.c | tp = tty_termios[line] = kmalloc(sizeof(struct termios), |
| line | 834 | kernel/chr_drv/tty_io.c | if (IS_A_CONSOLE(line)) { |
| line | 839 | kernel/chr_drv/tty_io.c | } else if (IS_A_SERIAL(line)) { |
| line | 841 | kernel/chr_drv/tty_io.c | } else if (IS_A_PTY_MASTER(line)) { |
| line | 843 | kernel/chr_drv/tty_io.c | } else if (IS_A_PTY_SLAVE(line)) { |
| line | 848 | kernel/chr_drv/tty_io.c | tty->termios = tty_termios[line]; |
| line | 850 | kernel/chr_drv/tty_io.c | if (IS_A_CONSOLE(line)) { |
| line | 854 | kernel/chr_drv/tty_io.c | } else if IS_A_SERIAL(line) { |
| line | 856 | kernel/chr_drv/tty_io.c | } else if IS_A_PTY(line) { |
| line | 75 | kernel/chr_drv/vt.c | console = tty->line - 1; |