1*cda5da8dSAndroid Build Coastguard Worker /* 2*cda5da8dSAndroid Build Coastguard Worker * This file is auto-generated. Modifications will be lost. 3*cda5da8dSAndroid Build Coastguard Worker * 4*cda5da8dSAndroid Build Coastguard Worker * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/ 5*cda5da8dSAndroid Build Coastguard Worker * for more information. 6*cda5da8dSAndroid Build Coastguard Worker */ 7*cda5da8dSAndroid Build Coastguard Worker #ifndef _UAPI_ASM_GENERIC_TERMIOS_H 8*cda5da8dSAndroid Build Coastguard Worker #define _UAPI_ASM_GENERIC_TERMIOS_H 9*cda5da8dSAndroid Build Coastguard Worker #include <asm/termbits.h> 10*cda5da8dSAndroid Build Coastguard Worker #include <asm/ioctls.h> 11*cda5da8dSAndroid Build Coastguard Worker struct winsize { 12*cda5da8dSAndroid Build Coastguard Worker unsigned short ws_row; 13*cda5da8dSAndroid Build Coastguard Worker unsigned short ws_col; 14*cda5da8dSAndroid Build Coastguard Worker unsigned short ws_xpixel; 15*cda5da8dSAndroid Build Coastguard Worker unsigned short ws_ypixel; 16*cda5da8dSAndroid Build Coastguard Worker }; 17*cda5da8dSAndroid Build Coastguard Worker #define NCC 8 18*cda5da8dSAndroid Build Coastguard Worker struct termio { 19*cda5da8dSAndroid Build Coastguard Worker unsigned short c_iflag; 20*cda5da8dSAndroid Build Coastguard Worker unsigned short c_oflag; 21*cda5da8dSAndroid Build Coastguard Worker unsigned short c_cflag; 22*cda5da8dSAndroid Build Coastguard Worker unsigned short c_lflag; 23*cda5da8dSAndroid Build Coastguard Worker unsigned char c_line; 24*cda5da8dSAndroid Build Coastguard Worker unsigned char c_cc[NCC]; 25*cda5da8dSAndroid Build Coastguard Worker }; 26*cda5da8dSAndroid Build Coastguard Worker #define TIOCM_LE 0x001 27*cda5da8dSAndroid Build Coastguard Worker #define TIOCM_DTR 0x002 28*cda5da8dSAndroid Build Coastguard Worker #define TIOCM_RTS 0x004 29*cda5da8dSAndroid Build Coastguard Worker #define TIOCM_ST 0x008 30*cda5da8dSAndroid Build Coastguard Worker #define TIOCM_SR 0x010 31*cda5da8dSAndroid Build Coastguard Worker #define TIOCM_CTS 0x020 32*cda5da8dSAndroid Build Coastguard Worker #define TIOCM_CAR 0x040 33*cda5da8dSAndroid Build Coastguard Worker #define TIOCM_RNG 0x080 34*cda5da8dSAndroid Build Coastguard Worker #define TIOCM_DSR 0x100 35*cda5da8dSAndroid Build Coastguard Worker #define TIOCM_CD TIOCM_CAR 36*cda5da8dSAndroid Build Coastguard Worker #define TIOCM_RI TIOCM_RNG 37*cda5da8dSAndroid Build Coastguard Worker #define TIOCM_OUT1 0x2000 38*cda5da8dSAndroid Build Coastguard Worker #define TIOCM_OUT2 0x4000 39*cda5da8dSAndroid Build Coastguard Worker #define TIOCM_LOOP 0x8000 40*cda5da8dSAndroid Build Coastguard Worker #endif 41