Home
last modified time | relevance | path

Searched refs:tchars (Results 1 – 14 of 14) sorted by relevance

/linux-2.4.37.9/drivers/char/
Dtty_ioctl.c306 static int get_tchars(struct tty_struct * tty, struct tchars * tchars) in get_tchars() argument
308 struct tchars tmp; in get_tchars()
316 return copy_to_user(tchars, &tmp, sizeof(tmp)) ? -EFAULT : 0; in get_tchars()
319 static int set_tchars(struct tty_struct * tty, struct tchars * tchars) in set_tchars() argument
321 struct tchars tmp; in set_tchars()
323 if (copy_from_user(&tmp, tchars, sizeof(tmp))) in set_tchars()
407 return get_tchars(real_tty, (struct tchars *) arg); in n_tty_ioctl()
409 return set_tchars(real_tty, (struct tchars *) arg); in n_tty_ioctl()
/linux-2.4.37.9/include/asm-ppc64/
Dtermios.h27 struct tchars { struct
107 #define TIOCSETC _IOW('t', 17, struct tchars)
108 #define TIOCGETC _IOR('t', 18, struct tchars)
Dioctls.h25 #define TIOCSETC _IOW('t', 17, struct tchars)
26 #define TIOCGETC _IOR('t', 18, struct tchars)
/linux-2.4.37.9/include/asm-ppc/
Dtermios.h22 struct tchars { struct
52 #define TIOCSETC _IOW('t', 17, struct tchars)
53 #define TIOCGETC _IOR('t', 18, struct tchars)
Dioctls.h18 #define TIOCSETC _IOW('t', 17, struct tchars)
19 #define TIOCGETC _IOR('t', 18, struct tchars)
/linux-2.4.37.9/include/asm-alpha/
Dioctls.h18 #define TIOCSETC _IOW('t', 17, struct tchars)
19 #define TIOCGETC _IOR('t', 18, struct tchars)
Dtermios.h15 struct tchars { struct
/linux-2.4.37.9/include/asm-sparc/
Dioctls.h35 #define __TIOCSETC _IOW('t', 17, struct tchars) /* SunOS Specific */
36 #define __TIOCGETC _IOR('t', 18, struct tchars) /* SunOS Specific */
Dtermios.h17 struct tchars { struct
/linux-2.4.37.9/include/asm-sparc64/
Dioctls.h36 #define __TIOCSETC _IOW('t', 17, struct tchars) /* SunOS Specific */
37 #define __TIOCGETC _IOR('t', 18, struct tchars) /* SunOS Specific */
Dtermios.h17 struct tchars { struct
/linux-2.4.37.9/include/asm-mips64/
Dtermios.h23 struct tchars { struct
/linux-2.4.37.9/include/asm-mips/
Dtermios.h22 struct tchars { struct
/linux-2.4.37.9/fs/openpromfs/
Dinode.c455 char tchars[17]; /* XXX yuck... */ in property_write() local
457 if (copy_from_user(tchars, buf, 16)) in property_write()
459 *q = simple_strtoul (tchars, 0, 16); in property_write()