taglinefilesource code
NR_PTYS54drivers/char/pty.cstatic struct tty_struct *pty_table[NR_PTYS];
NR_PTYS55drivers/char/pty.cstatic struct termios *pty_termios[NR_PTYS];
NR_PTYS56drivers/char/pty.cstatic struct termios *pty_termios_locked[NR_PTYS];
NR_PTYS57drivers/char/pty.cstatic struct tty_struct *ttyp_table[NR_PTYS];
NR_PTYS58drivers/char/pty.cstatic struct termios *ttyp_termios[NR_PTYS];
NR_PTYS59drivers/char/pty.cstatic struct termios *ttyp_termios_locked[NR_PTYS];
NR_PTYS60drivers/char/pty.cstatic struct pty_struct pty_state[NR_PTYS];
NR_PTYS192drivers/char/pty.cif ((line < 0) || (line >= NR_PTYS))
NR_PTYS225drivers/char/pty.cpty_driver.num = NR_PTYS;
NR_PTYS263drivers/char/pty.cold_pty_driver.num = (NR_PTYS > 64) ? 64 : NR_PTYS;
NR_PTYS269drivers/char/pty.cold_pty_slave_driver.num = (NR_PTYS > 64) ? 64 : NR_PTYS;