Home
last modified time | relevance | path

Searched refs:tios (Results 1 – 1 of 1) sorted by relevance

/openthread-3.4.0/src/posix/platform/
Dhdlc_interface.cpp432 struct termios tios; in OpenFile() local
439 VerifyOrExit((rval = tcgetattr(fd, &tios)) == 0); in OpenFile()
441 cfmakeraw(&tios); in OpenFile()
443 tios.c_cflag = CS8 | HUPCL | CREAD | CLOCAL; in OpenFile()
449 tios.c_cflag |= PARENB; in OpenFile()
450 tios.c_cflag |= PARODD; in OpenFile()
454 tios.c_cflag |= PARENB; in OpenFile()
470 tios.c_cflag &= static_cast<unsigned long>(~CSTOPB); in OpenFile()
473 tios.c_cflag |= CSTOPB; in OpenFile()
576 tios.c_cflag |= CRTSCTS; in OpenFile()
[all …]