Searched refs:termio (Results 1 - 14 of 14) sorted by relevance

/linux-master/arch/alpha/kernel/
H A Dtermios.c5 struct termio __user *termio)
7 struct termio v;
10 if (copy_from_user(&v, termio, sizeof(struct termio)))
32 int kernel_termios_to_user_termio(struct termio __user *termio, argument
35 struct termio v;
38 memset(&v, 0, sizeof(struct termio));
55 return copy_to_user(termio,
4 user_termio_to_kernel_termios(struct ktermios *termios, struct termio __user *termio) argument
[all...]
/linux-master/include/linux/
H A Dtermios_internal.h37 int user_termio_to_kernel_termios(struct ktermios *, struct termio __user *);
38 int kernel_termios_to_user_termio(struct termio __user *, struct ktermios *);
/linux-master/arch/alpha/include/uapi/asm/
H A Dtermios.h42 struct termio { struct
52 * c_cc characters in the termio structure. Oh, how I love being
H A Dioctls.h26 #define TCGETA _IOR('t', 23, struct termio)
27 #define TCSETA _IOW('t', 24, struct termio)
28 #define TCSETAW _IOW('t', 25, struct termio)
29 #define TCSETAF _IOW('t', 28, struct termio)
/linux-master/arch/parisc/include/uapi/asm/
H A Dioctls.h13 #define TCGETA _IOR('T', 1, struct termio)
14 #define TCSETA _IOW('T', 2, struct termio)
15 #define TCSETAW _IOW('T', 3, struct termio)
16 #define TCSETAF _IOW('T', 4, struct termio)
/linux-master/arch/powerpc/include/uapi/asm/
H A Dtermios.h4 * fields have been reordered so that termio & termios share the
54 struct termio { struct
H A Dioctls.h26 #define TCGETA _IOR('t', 23, struct termio)
27 #define TCSETA _IOW('t', 24, struct termio)
28 #define TCSETAW _IOW('t', 25, struct termio)
29 #define TCSETAF _IOW('t', 28, struct termio)
/linux-master/include/uapi/asm-generic/
H A Dtermios.h23 struct termio { struct
/linux-master/arch/mips/include/uapi/asm/
H A Dtermios.h54 struct termio { struct
/linux-master/arch/sparc/include/uapi/asm/
H A Dioctls.h8 #define TCGETA _IOR('T', 1, struct termio)
9 #define TCSETA _IOW('T', 2, struct termio)
10 #define TCSETAW _IOW('T', 3, struct termio)
11 #define TCSETAF _IOW('T', 4, struct termio)
H A Dtermbits.h14 struct termio { struct
/linux-master/arch/sparc/kernel/
H A Dtermios.c5 * c_cc characters in the termio structure. Oh, how I love being
15 int kernel_termios_to_user_termio(struct termio __user *termio, argument
18 struct termio v;
19 memset(&v, 0, sizeof(struct termio));
30 return copy_to_user(termio, &v, sizeof(struct termio));
/linux-master/drivers/tty/
H A Dtty_ioctl.c362 * Translate a "termio" structure into a "termios". Ugh.
365 struct termio __user *termio)
367 struct termio v;
369 if (copy_from_user(&v, termio, sizeof(struct termio)))
382 * Translate a "termios" structure into a "termio". Ugh.
384 __weak int kernel_termios_to_user_termio(struct termio __user *termio, argument
387 struct termio
364 user_termio_to_kernel_termios(struct ktermios *termios, struct termio __user *termio) argument
544 get_termio(struct tty_struct *tty, struct termio __user *termio) argument
[all...]
H A Dmoxa.c1870 * int MoxaPortSetTermio(int port, struct ktermios *termio, speed_t baud);
1872 * struct ktermios * termio : termio structure pointer
1875 * return: -1 : this port is invalid or termio == NULL
2047 static int MoxaPortSetTermio(struct moxa_port *port, struct ktermios *termio, argument
2055 mode = termio->c_cflag & CSIZE;
2065 if (termio->c_cflag & CSTOPB) {
2073 if (termio->c_cflag & PARENB) {
2074 if (termio->c_cflag & PARODD) {
2075 if (termio
[all...]

Completed in 144 milliseconds