Home
last modified time | relevance | path

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

/qemu/chardev/
H A Dchar-pty.c281 static void cfmakeraw (struct termios *termios_p) in cfmakeraw() argument
283 termios_p->c_iflag &= in cfmakeraw()
285 termios_p->c_oflag &= ~OPOST; in cfmakeraw()
286 termios_p->c_lflag &= ~(ECHO | ECHONL | ICANON | ISIG | IEXTEN); in cfmakeraw()
287 termios_p->c_cflag &= ~(CSIZE | PARENB); in cfmakeraw()
288 termios_p->c_cflag |= CS8; in cfmakeraw()
290 termios_p->c_cc[VMIN] = 0; in cfmakeraw()
291 termios_p->c_cc[VTIME] = 0; in cfmakeraw()