tag | line | file | source code |
line | 73 | include/linux/tty.h | unsigned short line; |
line | 244 | include/linux/tty.h | extern int serial_open(unsigned int line, struct file * filp); |
line | 245 | include/linux/tty.h | extern void serial_close(unsigned int line, struct file * filp); |
line | 246 | include/linux/tty.h | extern void change_speed(unsigned int line); |
line | 247 | include/linux/tty.h | extern void send_break(unsigned int line); |
line | 35 | kernel/chr_drv/serial.c | void send_break(unsigned int line) |
line | 40 | kernel/chr_drv/serial.c | if (line >= NR_SERIALS) |
line | 42 | kernel/chr_drv/serial.c | info = serial_table + line; |
line | 65 | kernel/chr_drv/serial.c | unsigned int timer = SER1_TIMEOUT + info->line; |
line | 96 | kernel/chr_drv/serial.c | timer_active &= ~((1<<SER1_TIMER)<<info->line); |
line | 105 | kernel/chr_drv/serial.c | timer_active |= (1<<SER1_TIMER)<<info->line; |
line | 285 | kernel/chr_drv/serial.c | void serial_close(unsigned line, struct file * filp) |
line | 290 | kernel/chr_drv/serial.c | if (line >= NR_SERIALS) |
line | 292 | kernel/chr_drv/serial.c | info = serial_table + line; |
line | 322 | kernel/chr_drv/serial.c | void change_speed(unsigned int line) |
line | 333 | kernel/chr_drv/serial.c | if (line >= NR_SERIALS) |
line | 335 | kernel/chr_drv/serial.c | info = serial_table + line; |
line | 367 | kernel/chr_drv/serial.c | int serial_open(unsigned line, struct file * filp) |
line | 374 | kernel/chr_drv/serial.c | sa.sa_handler = serial_handler[line]; |
line | 378 | kernel/chr_drv/serial.c | if (line >= NR_SERIALS) |
line | 380 | kernel/chr_drv/serial.c | info = serial_table + line; |
line | 392 | kernel/chr_drv/serial.c | int get_serial_info(unsigned int line, struct serial_struct * info) |
line | 394 | kernel/chr_drv/serial.c | if (line >= NR_SERIALS) |
line | 398 | kernel/chr_drv/serial.c | memcpy_tofs(info,serial_table+line,sizeof(*info)); |
line | 402 | kernel/chr_drv/serial.c | int set_serial_info(unsigned int line, struct serial_struct * info) |
line | 408 | kernel/chr_drv/serial.c | void (*handler)(int) = serial_handler[line]; |
line | 412 | kernel/chr_drv/serial.c | if (line >= NR_SERIALS) |
line | 417 | kernel/chr_drv/serial.c | info = serial_table + line; |
line | 506 | kernel/chr_drv/serial.c | int line = tty - tty_table - 64; |
line | 508 | kernel/chr_drv/serial.c | do_rs_write(serial_table+line); |