Searched refs:tio (Results 1 – 1 of 1) sorted by relevance
144 struct termios tio; in android_hardware_SerialPort_open() local145 if (tcgetattr(fd, &tio)) in android_hardware_SerialPort_open()146 memset(&tio, 0, sizeof(tio)); in android_hardware_SerialPort_open()148 tio.c_cflag = speed | CS8 | CLOCAL | CREAD; in android_hardware_SerialPort_open()150 tio.c_oflag &= ~OPOST; in android_hardware_SerialPort_open()151 tio.c_iflag = IGNPAR; in android_hardware_SerialPort_open()152 tio.c_lflag = 0; /* turn of CANON, ECHO*, etc */ in android_hardware_SerialPort_open()154 tio.c_cc[VTIME] = 0; in android_hardware_SerialPort_open()155 tio.c_cc[VMIN] = 1; in android_hardware_SerialPort_open()156 tcsetattr(fd, TCSANOW, &tio); in android_hardware_SerialPort_open()