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

/frameworks/base/core/jni/
H A Dandroid_hardware_SerialPort.cpp144 struct termios tio; local
145 if (tcgetattr(fd, &tio))
146 memset(&tio, 0, sizeof(tio));
148 tio.c_cflag = speed | CS8 | CLOCAL | CREAD;
150 tio.c_oflag &= ~OPOST;
151 tio.c_iflag = IGNPAR;
152 tio.c_lflag = 0; /* turn of CANON, ECHO*, etc */
154 tio.c_cc[VTIME] = 0;
155 tio
[all...]

Completed in 32 milliseconds