/openbmc/linux/arch/alpha/kernel/ |
H A D | termios.c | 5 struct termio __user *termio) in user_termio_to_kernel_termios() argument 7 struct termio v; in user_termio_to_kernel_termios() 10 if (copy_from_user(&v, termio, sizeof(struct termio))) in user_termio_to_kernel_termios() 32 int kernel_termios_to_user_termio(struct termio __user *termio, in kernel_termios_to_user_termio() argument 35 struct termio v; in kernel_termios_to_user_termio() 38 memset(&v, 0, sizeof(struct termio)); in kernel_termios_to_user_termio() 55 return copy_to_user(termio, &v, sizeof(struct termio)); in kernel_termios_to_user_termio()
|
/openbmc/linux/arch/parisc/include/uapi/asm/ |
H A D | ioctls.h | 13 #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)
|
/openbmc/linux/arch/powerpc/include/uapi/asm/ |
H A D | ioctls.h | 26 #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)
|
H A D | termios.h | 54 struct termio { struct
|
/openbmc/linux/arch/alpha/include/uapi/asm/ |
H A D | ioctls.h | 26 #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)
|
H A D | termios.h | 42 struct termio { struct
|
/openbmc/linux/arch/sparc/kernel/ |
H A D | termios.c | 15 int kernel_termios_to_user_termio(struct termio __user *termio, in kernel_termios_to_user_termio() argument 18 struct termio v; in kernel_termios_to_user_termio() 19 memset(&v, 0, sizeof(struct termio)); in kernel_termios_to_user_termio() 30 return copy_to_user(termio, &v, sizeof(struct termio)); in kernel_termios_to_user_termio()
|
/openbmc/linux/drivers/tty/ |
H A D | tty_ioctl.c | 374 struct termio __user *termio) in user_termio_to_kernel_termios() argument 376 struct termio v; in user_termio_to_kernel_termios() 378 if (copy_from_user(&v, termio, sizeof(struct termio))) in user_termio_to_kernel_termios() 393 __weak int kernel_termios_to_user_termio(struct termio __user *termio, in kernel_termios_to_user_termio() argument 396 struct termio v; in kernel_termios_to_user_termio() 397 memset(&v, 0, sizeof(struct termio)); in kernel_termios_to_user_termio() 404 return copy_to_user(termio, &v, sizeof(struct termio)); in kernel_termios_to_user_termio() 471 (struct termio __user *)arg)) in set_termios() 552 static int get_termio(struct tty_struct *tty, struct termio __user *termio) in get_termio() argument 556 if (kernel_termios_to_user_termio(termio, &kterm)) in get_termio()
|
H A D | moxa.c | 2047 static int MoxaPortSetTermio(struct moxa_port *port, struct ktermios *termio, in MoxaPortSetTermio() argument 2055 mode = termio->c_cflag & CSIZE; in MoxaPortSetTermio() 2065 if (termio->c_cflag & CSTOPB) { in MoxaPortSetTermio() 2073 if (termio->c_cflag & PARENB) { in MoxaPortSetTermio() 2074 if (termio->c_cflag & PARODD) { in MoxaPortSetTermio() 2075 if (termio->c_cflag & CMSPAR) in MoxaPortSetTermio() 2080 if (termio->c_cflag & CMSPAR) in MoxaPortSetTermio() 2095 if (termio->c_iflag & (IXON | IXOFF | IXANY)) { in MoxaPortSetTermio() 2097 writeb(termio->c_cc[VSTART], ofsAddr + FuncArg); in MoxaPortSetTermio() 2098 writeb(termio->c_cc[VSTOP], ofsAddr + FuncArg1); in MoxaPortSetTermio()
|
/openbmc/linux/arch/sparc/include/uapi/asm/ |
H A D | ioctls.h | 8 #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 D | termios.h | 44 struct termio { struct
|
/openbmc/qemu/linux-user/sh4/ |
H A D | termbits.h | 189 #define TARGET_TCGETA TARGET_IOR('t', 23, struct termio) 199 #define TARGET_TCSETA TARGET_IOW('t', 24, struct termio) 200 #define TARGET_TCSETAW TARGET_IOW('t', 25, struct termio) 201 #define TARGET_TCSETAF TARGET_IOW('t', 28, struct termio)
|
/openbmc/linux/include/linux/ |
H A D | termios_internal.h | 37 int user_termio_to_kernel_termios(struct ktermios *, struct termio __user *); 38 int kernel_termios_to_user_termio(struct termio __user *, struct ktermios *);
|
/openbmc/openbmc/poky/meta/recipes-bsp/lrzsz/lrzsz-0.12.20/ |
H A D | lrzsz-check-locale.h.patch | 23 AC_CHECK_HEADERS(termios.h sys/termios.h termio.h sys/termio.h sgtty.h)
|
/openbmc/openbmc/poky/meta/recipes-devtools/expect/expect/ |
H A D | expect-configure-c99.patch | 95 AC_MSG_CHECKING([for struct termio]) 96 AC_TRY_RUN([#include <termio.h> 100 struct termio tmp;
|
/openbmc/linux/include/uapi/asm-generic/ |
H A D | termios.h | 23 struct termio { struct
|
/openbmc/linux/arch/mips/include/uapi/asm/ |
H A D | termios.h | 54 struct termio { struct
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/libtalloc/libtalloc/ |
H A D | 0001-talloc-Add-configure-options-for-packages.patch | 90 …nf.CHECK_HEADERS('sys/resource.h sys/security.h sys/shm.h sys/statfs.h sys/statvfs.h sys/termio.h') 91 conf.CHECK_HEADERS('sys/vfs.h sys/xattr.h termio.h termios.h sys/file.h')
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/libldb/libldb/ |
H A D | 0002-ldb-Add-configure-options-for-packages.patch | 95 …nf.CHECK_HEADERS('sys/resource.h sys/security.h sys/shm.h sys/statfs.h sys/statvfs.h sys/termio.h')
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/android-tools/android-tools/build/ |
H A D | 0001-Riscv-Add-risc-v-Android-config-header.patch | 109 + * Define this if you have <termio.h>
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/libtevent/libtevent/ |
H A D | 0001-Add-configure-options-for-packages.patch | 100 …nf.CHECK_HEADERS('sys/resource.h sys/security.h sys/shm.h sys/statfs.h sys/statvfs.h sys/termio.h')
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/libtdb/libtdb/ |
H A D | 0001-tdb-Add-configure-options-for-packages.patch | 96 …nf.CHECK_HEADERS('sys/resource.h sys/security.h sys/shm.h sys/statfs.h sys/statvfs.h sys/termio.h')
|
/openbmc/qemu/linux-user/ |
H A D | syscall.c | 89 #define termio host_termio macro
|
/openbmc/openbmc/poky/meta/lib/oeqa/files/ |
H A D | buildhistory_filelist2.txt | 4690 -rw-r--r-- root root 214 ./usr/include/termio.h
|
H A D | buildhistory_filelist1.txt | 4689 -rw-r--r-- root root 214 ./usr/include/termio.h
|