Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/tools/debugserver/source/
H A DRNBSocket.cpp252 struct termios stdin_termios; in OpenFile() local
254 if (::tcgetattr(m_fd, &stdin_termios) == 0) { in OpenFile()
255 stdin_termios.c_lflag &= ~ECHO; // Turn off echoing in OpenFile()
256 stdin_termios.c_lflag &= ~ICANON; // Get one char at a time in OpenFile()
257 ::tcsetattr(m_fd, TCSANOW, &stdin_termios); in OpenFile()