tag | line | file | source code |
read_q | 226 | include/linux/tty.h | struct tty_queue read_q; |
read_q | 602 | kernel/chr_drv/console.c | put_tty_queue(*p, &tty->read_q); |
read_q | 618 | kernel/chr_drv/console.c | put_tty_queue(buff[i], &tty->read_q); |
read_q | 625 | kernel/chr_drv/console.c | put_tty_queue('\033', &tty->read_q); |
read_q | 626 | kernel/chr_drv/console.c | put_tty_queue('[', &tty->read_q); |
read_q | 628 | kernel/chr_drv/console.c | put_tty_queue(';', &tty->read_q); |
read_q | 630 | kernel/chr_drv/console.c | put_tty_queue('R', &tty->read_q); |
read_q | 137 | kernel/chr_drv/keyboard.c | (L_ECHO(tty) || (EMPTY(&tty->secondary) && EMPTY(&tty->read_q))))) |
read_q | 151 | kernel/chr_drv/keyboard.c | qp = &tty->read_q; |
read_q | 168 | kernel/chr_drv/keyboard.c | qp = &tty->read_q; |
read_q | 28 | kernel/chr_drv/pty.c | wake_up_interruptible(&tty->read_q.proc_list); |
read_q | 44 | kernel/chr_drv/pty.c | if (FULL(&to->read_q)) { |
read_q | 51 | kernel/chr_drv/pty.c | put_tty_queue(c, &to->read_q); |
read_q | 80 | kernel/chr_drv/pty.c | wake_up_interruptible(&tty->read_q.proc_list); |
read_q | 84 | kernel/chr_drv/pty.c | interruptible_sleep_on(&tty->link->read_q.proc_list); |
read_q | 213 | kernel/chr_drv/serial.c | queue = &info->tty->read_q; |
read_q | 744 | kernel/chr_drv/serial.c | status, LEFT(&tty->read_q), LEFT(&tty->secondary)); |
read_q | 134 | kernel/chr_drv/tty_io.c | tail = tty->read_q.tail; |
read_q | 135 | kernel/chr_drv/tty_io.c | head = tty->read_q.head; |
read_q | 137 | kernel/chr_drv/tty_io.c | *p++ = tty->read_q.buf[tail++]; |
read_q | 141 | kernel/chr_drv/tty_io.c | tty->read_q.tail = tail; |
read_q | 160 | kernel/chr_drv/tty_io.c | if (!tty || EMPTY(&tty->read_q)) |
read_q | 253 | kernel/chr_drv/tty_io.c | wake_up_interruptible(&tty->read_q.proc_list); |
read_q | 492 | kernel/chr_drv/tty_io.c | if (tty->read_q.tail != tty->read_q.head) { |
read_q | 493 | kernel/chr_drv/tty_io.c | c = 0xff & tty->read_q.buf[tty->read_q.tail]; |
read_q | 494 | kernel/chr_drv/tty_io.c | special_flag = !clear_bit(tty->read_q.tail, |
read_q | 496 | kernel/chr_drv/tty_io.c | tty->read_q.tail = (tty->read_q.tail + 1) & |
read_q | 676 | kernel/chr_drv/tty_io.c | if (tty->throttle && (LEFT(&tty->read_q) >= RQ_THRESHOLD_HW) |
read_q | 778 | kernel/chr_drv/tty_io.c | wake_up_interruptible(&tty->read_q.proc_list); |
read_q | 852 | kernel/chr_drv/tty_io.c | if (FULL(&tty->read_q)) |
read_q | 48 | kernel/chr_drv/tty_ioctl.c | flush(&tty->read_q); |
read_q | 49 | kernel/chr_drv/tty_ioctl.c | wake_up_interruptible(&tty->read_q.proc_list); |
read_q | 66 | kernel/chr_drv/tty_ioctl.c | flush(&tty->read_q); |
read_q | 67 | kernel/chr_drv/tty_ioctl.c | wake_up_interruptible(&tty->read_q.proc_list); |