Home | History | Annotate | Download | only in sys

Lines Matching defs:termios

42  *  @(#)termios.h 8.3 (Berkeley) 3/28/94

43 NetBSD: termios.h,v 1.29 2005/12/11 12:25:21 christos Exp
159 struct termios {
170 * Commands passed to tcsetattr() for setting the termios structure.
222 Extracts the input baud rate from the termios structure pointed to by the
225 @param[in] pTermios A pointer to the termios structure from which to extract
229 in the termios structure, without interpretation.
231 speed_t cfgetispeed (const struct termios *);
235 Extracts the output baud rate from the termios structure pointed to by the
238 @param[in] pTermios A pointer to the termios structure from which to extract
242 in the termios structure, without interpretation.
244 speed_t cfgetospeed (const struct termios *);
248 Replaces the input baud rate, in the termios structure pointed to by the
251 @param[out] pTermios A pointer to the termios structure into which to set
258 possible speed values as specified in <sys/termios.h>.
260 int cfsetispeed (struct termios *, speed_t);
264 Replaces the output baud rate, in the termios structure pointed to by the
267 @param[out] pTermios A pointer to the termios structure into which to set
274 possible speed values as specified in <sys/termios.h>.
276 int cfsetospeed (struct termios *, speed_t);
281 fd and store them into the termios structure referenced by pTermios.
284 @param[out] pTermios A pointer to a termios structure into which to store
292 int tcgetattr (int fd, struct termios *pTermios);
297 fd to the values in the termios structure referenced by pTermios.
310 @param[in] pTermios A pointer to a termios structure into which to retrieve
318 int tcsetattr (int fd, int OptAct, const struct termios *pTermios);
384 //void cfmakeraw (struct termios *);
385 //int cfsetspeed (struct termios *, speed_t);