ltchars            46 arch/alpha/include/uapi/asm/ioctls.h #define TIOCGLTC	_IOR('t', 116, struct ltchars)
ltchars            47 arch/alpha/include/uapi/asm/ioctls.h #define TIOCSLTC	_IOW('t', 117, struct ltchars)
ltchars            41 arch/powerpc/include/uapi/asm/ioctls.h #define TIOCGLTC	_IOR('t', 116, struct ltchars)
ltchars            42 arch/powerpc/include/uapi/asm/ioctls.h #define TIOCSLTC	_IOW('t', 117, struct ltchars)
ltchars            72 arch/sparc/include/uapi/asm/ioctls.h #define __TIOCGLTC        _IOR('t', 116, struct ltchars) /* SunOS Specific */
ltchars            73 arch/sparc/include/uapi/asm/ioctls.h #define __TIOCSLTC        _IOW('t', 117, struct ltchars) /* SunOS Specific */
ltchars           631 drivers/tty/tty_ioctl.c static int get_ltchars(struct tty_struct *tty, struct ltchars __user *ltchars)
ltchars           633 drivers/tty/tty_ioctl.c 	struct ltchars tmp;
ltchars           645 drivers/tty/tty_ioctl.c 	return copy_to_user(ltchars, &tmp, sizeof(tmp)) ? -EFAULT : 0;
ltchars           648 drivers/tty/tty_ioctl.c static int set_ltchars(struct tty_struct *tty, struct ltchars __user *ltchars)
ltchars           650 drivers/tty/tty_ioctl.c 	struct ltchars tmp;
ltchars           652 drivers/tty/tty_ioctl.c 	if (copy_from_user(&tmp, ltchars, sizeof(tmp)))