tag | line | file | source code |
throttle | 218 | include/linux/tty.h | void (*throttle)(struct tty_struct * tty, int status); |
throttle | 1230 | kernel/chr_drv/serial.c | tty->throttle = rs_throttle; |
throttle | 486 | kernel/chr_drv/tty_io.c | if (tty->throttle && (c < SQ_THRESHOLD_LW) |
throttle | 488 | kernel/chr_drv/tty_io.c | tty->throttle(tty, TTY_THROTTLE_SQ_FULL); |
throttle | 676 | kernel/chr_drv/tty_io.c | if (tty->throttle && (LEFT(&tty->read_q) >= RQ_THRESHOLD_HW) |
throttle | 678 | kernel/chr_drv/tty_io.c | tty->throttle(tty, TTY_THROTTLE_RQ_AVAIL); |
throttle | 679 | kernel/chr_drv/tty_io.c | if (tty->throttle && (LEFT(&tty->secondary) >= SQ_THRESHOLD_HW) |
throttle | 681 | kernel/chr_drv/tty_io.c | tty->throttle(tty, TTY_THROTTLE_SQ_AVAIL); |
throttle | 783 | kernel/chr_drv/tty_io.c | if (tty->throttle && (LEFT(&tty->secondary) >= SQ_THRESHOLD_HW) |
throttle | 785 | kernel/chr_drv/tty_io.c | tty->throttle(tty, TTY_THROTTLE_SQ_AVAIL); |