Symbol: termio
arch/alpha/kernel/termios.c
10
if (copy_from_user(&v, termio, sizeof(struct termio)))
arch/alpha/kernel/termios.c
32
int kernel_termios_to_user_termio(struct termio __user *termio,
arch/alpha/kernel/termios.c
35
struct termio v;
arch/alpha/kernel/termios.c
38
memset(&v, 0, sizeof(struct termio));
arch/alpha/kernel/termios.c
5
struct termio __user *termio)
arch/alpha/kernel/termios.c
55
return copy_to_user(termio, &v, sizeof(struct termio));
arch/alpha/kernel/termios.c
7
struct termio v;
arch/sparc/kernel/termios.c
15
int kernel_termios_to_user_termio(struct termio __user *termio,
arch/sparc/kernel/termios.c
18
struct termio v;
arch/sparc/kernel/termios.c
19
memset(&v, 0, sizeof(struct termio));
arch/sparc/kernel/termios.c
30
return copy_to_user(termio, &v, sizeof(struct termio));
drivers/tty/moxa.c
1795
static int MoxaPortSetTermio(struct moxa_port *port, struct ktermios *termio,
drivers/tty/moxa.c
1803
mode = termio->c_cflag & CSIZE;
drivers/tty/moxa.c
1813
if (termio->c_cflag & CSTOPB) {
drivers/tty/moxa.c
1821
if (termio->c_cflag & PARENB) {
drivers/tty/moxa.c
1822
if (termio->c_cflag & PARODD) {
drivers/tty/moxa.c
1823
if (termio->c_cflag & CMSPAR)
drivers/tty/moxa.c
1828
if (termio->c_cflag & CMSPAR)
drivers/tty/moxa.c
1843
if (termio->c_iflag & (IXON | IXOFF | IXANY)) {
drivers/tty/moxa.c
1845
writeb(termio->c_cc[VSTART], ofsAddr + FuncArg);
drivers/tty/moxa.c
1846
writeb(termio->c_cc[VSTOP], ofsAddr + FuncArg1);
drivers/tty/tty_ioctl.c
361
struct termio __user *termio)
drivers/tty/tty_ioctl.c
363
struct termio v;
drivers/tty/tty_ioctl.c
365
if (copy_from_user(&v, termio, sizeof(struct termio)))
drivers/tty/tty_ioctl.c
380
__weak int kernel_termios_to_user_termio(struct termio __user *termio,
drivers/tty/tty_ioctl.c
383
struct termio v;
drivers/tty/tty_ioctl.c
384
memset(&v, 0, sizeof(struct termio));
drivers/tty/tty_ioctl.c
391
return copy_to_user(termio, &v, sizeof(struct termio));
drivers/tty/tty_ioctl.c
459
(struct termio __user *)arg))
drivers/tty/tty_ioctl.c
540
static int get_termio(struct tty_struct *tty, struct termio __user *termio)
drivers/tty/tty_ioctl.c
544
if (kernel_termios_to_user_termio(termio, &kterm))
include/linux/termios_internal.h
37
int user_termio_to_kernel_termios(struct ktermios *, struct termio __user *);
include/linux/termios_internal.h
38
int kernel_termios_to_user_termio(struct termio __user *, struct ktermios *);