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

/haiku/src/add-ons/kernel/drivers/ports/usb_serial/
H A DTracing.cpp106 trace_termios(struct termios *tios) argument
117 tios->c_iflag, tios->c_oflag, tios->c_cflag, tios->c_lflag,
118 tios->c_line,
119 tios->c_ispeed, tios->c_ospeed,
120 tios->c_cc[0], tios
[all...]
H A DTracing.h33 void trace_termios(struct termios *tios);
H A DSerialDevice.cpp158 SerialDevice::SetModes(struct termios *tios) argument
160 TRACE_FUNCRES(trace_termios, tios);
162 uint8 baud = tios->c_cflag & CBAUD;
166 speed = tios->c_ospeed;
170 memcpy(&fTTYConfig, tios, sizeof(termios));
177 config.c_cflag = tios->c_cflag;
184 SetHardwareFlowControl((tios->c_cflag & CRTSCTS) != 0);
188 lineCoding.stopbits = (tios->c_cflag & CSTOPB)
191 if (tios->c_cflag & PARENB) {
193 if (tios
[all...]
H A DSerialDevice.h57 void SetModes(struct termios *tios);
/haiku/src/add-ons/kernel/drivers/ports/pc_serial/
H A DTracing.cpp103 trace_termios(struct termios *tios) argument
114 tios->c_iflag, tios->c_oflag, tios->c_cflag, tios->c_lflag,
115 tios->c_line,
116 // tios->c_ixxxxx, tios->c_oxxxxx,
117 tios->c_cc[0], tios
[all...]
H A DTracing.h33 void trace_termios(struct termios *tios);
H A DSerialDevice.cpp108 SerialDevice::SetModes(struct termios *tios) argument
110 //TRACE_FUNCRES(trace_termios, tios);
112 uint32 baudIndex = tios->c_cflag & CBAUD;
117 memcpy(&fTTYConfig, tios, sizeof(termios));
124 config.c_cflag = tios->c_cflag;
134 switch (tios->c_cflag & CSIZE) {
153 if (tios->c_cflag & CSTOPB)
155 if (tios->c_cflag & PARENB)
157 if ((tios->c_cflag & PARODD) == 0)
212 lineCoding.stopbits = (tios
[all...]
H A DSerialDevice.h44 void SetModes(struct termios *tios);

Completed in 75 milliseconds