Searched defs:termiosSetup (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Devices/Serial/
H A DDrvHostSerial.cpp198 struct termios *termiosSetup; local
207 termiosSetup = (struct termios *)RTMemTmpAllocZ(sizeof(struct termios));
210 termiosSetup->c_cflag |= (CLOCAL | CREAD);
285 cfsetispeed(termiosSetup, baud_rate);
286 cfsetospeed(termiosSetup, baud_rate);
291 termiosSetup->c_cflag |= PARENB;
294 termiosSetup->c_cflag |= (PARENB | PARODD);
305 termiosSetup->c_cflag |= CS5;
308 termiosSetup->c_cflag |= CS6;
311 termiosSetup
[all...]

Completed in 43 milliseconds