Home
last modified time | relevance | path

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

/haiku/src/libs/bsd/
H A Dpty.cpp16 openpty(int* _master, int* _slave, char* name, struct termios* termAttrs, in openpty() argument
32 if ((termAttrs != NULL && tcsetattr(master, TCSANOW, termAttrs) != 0) in openpty()
68 forkpty(int* _master, char* name, struct termios* termAttrs, in forkpty() argument
72 if (openpty(&master, &slave, name, termAttrs, windowSize) != 0) in forkpty()
/haiku/src/bin/multiuser/
H A Dmultiuser_utils.cpp44 struct termios termAttrs; in read_password() local
45 if (tcgetattr(inFD, &termAttrs) != 0) { in read_password()
51 tcflag_t localFlags = termAttrs.c_lflag; in read_password()
52 termAttrs.c_lflag &= ~ECHO; in read_password()
54 if (tcsetattr(inFD, TCSANOW, &termAttrs) != 0) { in read_password()
81 termAttrs.c_lflag = localFlags; in read_password()
82 tcsetattr(inFD, TCSANOW, &termAttrs); in read_password()
/haiku/headers/compatibility/bsd/
H A Dpty.h20 struct termios* termAttrs, struct winsize* windowSize);
23 struct termios* termAttrs, struct winsize* windowSize);