taglinefilesource code
ltchars337drivers/char/tty_ioctl.cstatic int get_ltchars(struct tty_struct * tty, struct ltchars * ltchars)
ltchars340drivers/char/tty_ioctl.cstruct ltchars tmp;
ltchars342drivers/char/tty_ioctl.cretval = verify_area(VERIFY_WRITE, ltchars, sizeof(struct ltchars));
ltchars351drivers/char/tty_ioctl.cmemcpy_tofs(ltchars, &tmp, sizeof(tmp));
ltchars355drivers/char/tty_ioctl.cstatic int set_ltchars(struct tty_struct * tty, struct ltchars * ltchars)
ltchars358drivers/char/tty_ioctl.cstruct ltchars tmp;
ltchars360drivers/char/tty_ioctl.cretval = verify_area(VERIFY_READ, ltchars, sizeof(struct ltchars));
ltchars363drivers/char/tty_ioctl.cmemcpy_fromfs(&tmp, ltchars, sizeof(tmp));
ltchars403drivers/char/tty_ioctl.creturn get_ltchars(real_tty, (struct ltchars *) arg);
ltchars405drivers/char/tty_ioctl.creturn set_ltchars(real_tty, (struct ltchars *) arg);
ltchars67include/asm-alpha/termios.h#define TIOCGLTC  _IOR('t', 116, struct ltchars)
ltchars68include/asm-alpha/termios.h#define TIOCSLTC  _IOW('t', 117, struct ltchars)
ltchars74include/asm-ppc/termios.h#define TIOCGLTC  _IOR('t', 116, struct ltchars)
ltchars75include/asm-ppc/termios.h#define TIOCSLTC  _IOW('t', 117, struct ltchars)
ltchars96include/asm-sparc/termios.h#define TIOCGLTC        _IOR('t', 116, struct ltchars) /* SunOS Specific */
ltchars97include/asm-sparc/termios.h#define TIOCSLTC        _IOW('t', 117, struct ltchars) /* SunOS Specific */