Lines Matching refs:termios
10 pub unsafe fn cfmakeraw(termios: *mut ::termios) { in cfmakeraw() argument
11 (*termios).c_iflag &= in cfmakeraw()
13 (*termios).c_oflag &= !OPOST; in cfmakeraw()
14 (*termios).c_lflag &= !(ECHO | ECHONL | ICANON | ISIG | IEXTEN); in cfmakeraw()
15 (*termios).c_cflag &= !(CSIZE | PARENB); in cfmakeraw()
16 (*termios).c_cflag |= CS8; in cfmakeraw()
31 (*termios).c_cc[VMIN] = 1; in cfmakeraw()
32 (*termios).c_cc[VTIME] = 0; in cfmakeraw()
35 pub unsafe fn cfsetspeed(termios: *mut ::termios, speed: ::speed_t) -> ::c_int { in cfsetspeed() argument
38 ::cfsetispeed(termios, speed); in cfsetspeed()
39 ::cfsetospeed(termios, speed); in cfsetspeed()
59 termp: *const termios, in openpty() argument
126 termp: *const termios, in forkpty() argument