| 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 | 191 | include/linux/soundcard.h | struct stereo_vol line; /* Line-in volume */ |
| line | 73 | include/linux/tty.h | int line; |
| line | 113 | include/linux/tty.h | #define SL_TO_DEV(line) ((line) | 0x40) |
| line | 187 | include/linux/tty.h | short line; |
| line | 298 | include/linux/tty.h | extern void change_speed(unsigned int line); |
| line | 164 | init/main.c | static void parse_options(char *line) |
| line | 169 | init/main.c | if (!*line) |
| line | 173 | init/main.c | next = line; |
| line | 174 | init/main.c | while ((line = next) != NULL) { |
| line | 175 | init/main.c | if ((next = strchr(line,' ')) != NULL) |
| line | 180 | init/main.c | if (!strncmp(line,"root=",5)) { |
| line | 181 | init/main.c | ROOT_DEV = simple_strtoul(line+5,NULL,16); |
| line | 188 | init/main.c | if (strchr(line,'=')) { |
| line | 191 | init/main.c | envp_init[++envs] = line; |
| line | 195 | init/main.c | argv_init[++args] = line; |
| line | 895 | kernel/chr_drv/console.c | currcons = tty->line - 1; |
| line | 31 | kernel/chr_drv/pty.c | if (IS_A_PTY_MASTER(tty->line)) { |
| line | 81 | kernel/chr_drv/serial.c | static void UART_ISR_proc(async_ISR ISR, int line); |
| line | 89 | kernel/chr_drv/serial.c | static void FourPort_ISR_proc(async_ISR ISR, int line); |
| line | 175 | kernel/chr_drv/serial.c | static inline void rs_sched_event(int line, |
| line | 180 | kernel/chr_drv/serial.c | rs_event |= 1 << line; |
| line | 198 | kernel/chr_drv/serial.c | static void UART_ISR_proc(async_ISR ISR, int line) |
| line | 201 | kernel/chr_drv/serial.c | struct async_struct * info = rs_table + line; |
| line | 237 | kernel/chr_drv/serial.c | rs_sched_event(line, info, RS_EVENT_DO_SAK); |
| line | 241 | kernel/chr_drv/serial.c | rs_sched_event(line, info, RS_EVENT_BREAK_INT); |
| line | 265 | kernel/chr_drv/serial.c | rs_sched_event(line, info, RS_EVENT_READ_PROCESS); |
| line | 289 | kernel/chr_drv/serial.c | rs_sched_event(line, info, |
| line | 295 | kernel/chr_drv/serial.c | rs_write_active |= 1 << line; |
| line | 297 | kernel/chr_drv/serial.c | set_bit(line, &rs_write_active); |
| line | 306 | kernel/chr_drv/serial.c | rs_sched_event(line, info, RS_EVENT_HUP_PGRP); |
| line | 338 | kernel/chr_drv/serial.c | int line = info->line; |
| line | 350 | kernel/chr_drv/serial.c | rs_write_active &= ~(1 << line); |
| line | 365 | kernel/chr_drv/serial.c | rs_write_active |= 1 << line; |
| line | 389 | kernel/chr_drv/serial.c | rs_sched_event(info->line, info, RS_EVENT_READ_PROCESS); |
| line | 429 | kernel/chr_drv/serial.c | static void UART_ISR_proc(async_ISR ISR, int line) |
| line | 432 | kernel/chr_drv/serial.c | struct async_struct * info = rs_table + line; |
| line | 450 | kernel/chr_drv/serial.c | static void FourPort_ISR_proc(async_ISR ISR, int line) |
| line | 457 | kernel/chr_drv/serial.c | for (i = line; ivec; i++) { |
| line | 475 | kernel/chr_drv/serial.c | (p->ISR_proc)(p, p->line); |
| line | 551 | kernel/chr_drv/serial.c | clear_bit(info->line, &rs_write_active); |
| line | 586 | kernel/chr_drv/serial.c | info = rs_table + DEV_TO_SL(tty->line); |
| line | 587 | kernel/chr_drv/serial.c | if (!test_bit(info->line, &rs_write_active)) { |
| line | 590 | kernel/chr_drv/serial.c | UART_ISR_proc(info->ISR, info->line); |
| line | 605 | kernel/chr_drv/serial.c | printk("throttle tty%d: %d (%d, %d)....\n", DEV_TO_SL(tty->line), |
| line | 610 | kernel/chr_drv/serial.c | info = rs_table + DEV_TO_SL(tty->line); |
| line | 620 | kernel/chr_drv/serial.c | info = rs_table + DEV_TO_SL(tty->line); |
| line | 647 | kernel/chr_drv/serial.c | int irq, line; |
| line | 649 | kernel/chr_drv/serial.c | line = DEV_TO_SL(tty->line); |
| line | 650 | kernel/chr_drv/serial.c | if ((line < 0) || (line >= NR_PORTS)) |
| line | 654 | kernel/chr_drv/serial.c | info = rs_table + line; |
| line | 659 | kernel/chr_drv/serial.c | rs_write_active &= ~(1 << line); |
| line | 660 | kernel/chr_drv/serial.c | rs_event &= ~(1 << line); |
| line | 662 | kernel/chr_drv/serial.c | clear_bit(line, &rs_write_active); |
| line | 663 | kernel/chr_drv/serial.c | clear_bit(line, &rs_event); |
| line | 757 | kernel/chr_drv/serial.c | void change_speed(unsigned int line) |
| line | 765 | kernel/chr_drv/serial.c | if (line >= NR_PORTS) |
| line | 767 | kernel/chr_drv/serial.c | info = rs_table + line; |
| line | 825 | kernel/chr_drv/serial.c | tmp.line = info->line; |
| line | 911 | kernel/chr_drv/serial.c | change_speed(info->line); |
| line | 974 | kernel/chr_drv/serial.c | int line; |
| line | 977 | kernel/chr_drv/serial.c | line = DEV_TO_SL(tty->line); |
| line | 978 | kernel/chr_drv/serial.c | if (line < 0 || line >= NR_PORTS) |
| line | 980 | kernel/chr_drv/serial.c | info = rs_table + line; |
| line | 1019 | kernel/chr_drv/serial.c | int irq, retval, line; |
| line | 1026 | kernel/chr_drv/serial.c | line = DEV_TO_SL(tty->line); |
| line | 1027 | kernel/chr_drv/serial.c | if ((line < 0) || (line >= NR_PORTS)) |
| line | 1029 | kernel/chr_drv/serial.c | info = rs_table + line; |
| line | 1062 | kernel/chr_drv/serial.c | change_speed(info->line); |
| line | 1247 | kernel/chr_drv/serial.c | info->line = i; |
| line | 1254 | kernel/chr_drv/serial.c | if (!info->ISR->line) { |
| line | 1255 | kernel/chr_drv/serial.c | info->ISR->line = i; |
| line | 1263 | kernel/chr_drv/serial.c | printk("ttys%d%s at 0x%04x (irq = %d)", info->line, |
| line | 56 | kernel/chr_drv/tty_io.c | static int initialize_tty_struct(struct tty_struct *tty, int line); |
| line | 132 | kernel/chr_drv/tty_io.c | tty->line); |
| line | 833 | kernel/chr_drv/tty_io.c | int line = tty->line; |
| line | 843 | kernel/chr_drv/tty_io.c | if (((*p)->tty == line) || |
| line | 850 | kernel/chr_drv/tty_io.c | (MINOR(filp->f_rdev) == line)) { |
| line | 863 | kernel/chr_drv/tty_io.c | static int initialize_tty_struct(struct tty_struct *tty, int line) |
| line | 865 | kernel/chr_drv/tty_io.c | struct termios *tp = tty_termios[line]; |
| line | 868 | kernel/chr_drv/tty_io.c | tty->line = line; |
| line | 872 | kernel/chr_drv/tty_io.c | if (!tty_termios[line]) { |
| line | 874 | kernel/chr_drv/tty_io.c | if (!tty_termios[line]) { |
| line | 879 | kernel/chr_drv/tty_io.c | if (IS_A_CONSOLE(line)) { |
| line | 885 | kernel/chr_drv/tty_io.c | } else if (IS_A_SERIAL(line)) { |
| line | 887 | kernel/chr_drv/tty_io.c | } else if (IS_A_PTY_MASTER(line)) { |
| line | 889 | kernel/chr_drv/tty_io.c | } else if (IS_A_PTY_SLAVE(line)) { |
| line | 896 | kernel/chr_drv/tty_io.c | tty_termios[line] = tp; |
| line | 899 | kernel/chr_drv/tty_io.c | tty->termios = tty_termios[line]; |
| line | 901 | kernel/chr_drv/tty_io.c | if (IS_A_CONSOLE(line)) { |
| line | 905 | kernel/chr_drv/tty_io.c | } else if IS_A_SERIAL(line) { |
| line | 907 | kernel/chr_drv/tty_io.c | } else if IS_A_PTY(line) { |
| line | 73 | kernel/chr_drv/vt.c | console = tty->line - 1; |