| tag | line | file | source code |
| throttle | 196 | include/linux/tty.h | void (*throttle)(struct tty_struct * tty, int status); |
| throttle | 1036 | kernel/chr_drv/serial.c | tty->throttle = rs_throttle; |
| throttle | 141 | kernel/chr_drv/tty_io.c | if (tty->throttle && (c < SQ_THRESHOLD_LW) |
| throttle | 143 | kernel/chr_drv/tty_io.c | tty->throttle(tty, TTY_THROTTLE_SQ_FULL); |
| throttle | 260 | kernel/chr_drv/tty_io.c | if (tty->throttle && (LEFT(&tty->read_q) >= RQ_THRESHOLD_HW) |
| throttle | 262 | kernel/chr_drv/tty_io.c | tty->throttle(tty, TTY_THROTTLE_RQ_AVAIL); |
| throttle | 263 | kernel/chr_drv/tty_io.c | if (tty->throttle && (LEFT(&tty->secondary) >= SQ_THRESHOLD_HW) |
| throttle | 265 | kernel/chr_drv/tty_io.c | tty->throttle(tty, TTY_THROTTLE_SQ_AVAIL); |
| throttle | 363 | kernel/chr_drv/tty_io.c | if (tty->throttle && (LEFT(&tty->secondary) >= SQ_THRESHOLD_HW) |
| throttle | 365 | kernel/chr_drv/tty_io.c | tty->throttle(tty, TTY_THROTTLE_SQ_AVAIL); |