tag | line | file | source code |
throttle | 203 | include/linux/tty.h | void (*throttle)(struct tty_struct * tty, int status); |
throttle | 946 | kernel/chr_drv/serial.c | tty->throttle = rs_throttle; |
throttle | 447 | kernel/chr_drv/tty_io.c | if (tty->throttle && (c < SQ_THRESHOLD_LW) |
throttle | 449 | kernel/chr_drv/tty_io.c | tty->throttle(tty, TTY_THROTTLE_SQ_FULL); |
throttle | 566 | kernel/chr_drv/tty_io.c | if (tty->throttle && (LEFT(&tty->read_q) >= RQ_THRESHOLD_HW) |
throttle | 568 | kernel/chr_drv/tty_io.c | tty->throttle(tty, TTY_THROTTLE_RQ_AVAIL); |
throttle | 569 | kernel/chr_drv/tty_io.c | if (tty->throttle && (LEFT(&tty->secondary) >= SQ_THRESHOLD_HW) |
throttle | 571 | kernel/chr_drv/tty_io.c | tty->throttle(tty, TTY_THROTTLE_SQ_AVAIL); |
throttle | 669 | kernel/chr_drv/tty_io.c | if (tty->throttle && (LEFT(&tty->secondary) >= SQ_THRESHOLD_HW) |
throttle | 671 | kernel/chr_drv/tty_io.c | tty->throttle(tty, TTY_THROTTLE_SQ_AVAIL); |