Home
last modified time | relevance | path

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

/freebsd/contrib/tcsh/
H A Dmi.termios.c55 speed_t cfgetispeed(termios_p) in cfgetispeed() argument
56 struct termios *termios_p; in cfgetispeed()
58 return termios_p->c_ispeed;
61 speed_t cfgetospeed(termios_p) in cfgetospeed() argument
62 struct termios *termios_p; in cfgetospeed()
64 return termios_p->c_ospeed;
67 speed_t cfsetispeed(termios_p, speed) in cfsetispeed() argument
68 struct termios *termios_p; in cfsetispeed()
71 termios_p->c_ispeed = speed;
75 speed_t cfsetospeed(termios_p, speed) in cfsetospeed() argument
[all …]
H A Dsh.misc.c699 xtcsetattr(int fildes, int optional_actions, const struct termios *termios_p) in xtcsetattr() argument
703 while ((res = tcsetattr(fildes, optional_actions, termios_p)) == -1 && in xtcsetattr()
/freebsd/contrib/llvm-project/lldb/tools/driver/
H A DPlatform.cpp49 int tcsetattr(int fd, int optional_actions, const struct termios *termios_p) { in tcsetattr() argument
53 int tcgetattr(int fildes, struct termios *termios_p) { in tcgetattr() argument
H A DPlatform.h72 const struct termios *termios_p);
73 extern int tcgetattr(int fildes, struct termios *termios_p);
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc3809 INTERCEPTOR(int, tcgetattr, int fd, void *termios_p) {
3811 COMMON_INTERCEPTOR_ENTER(ctx, tcgetattr, fd, termios_p);
3815 int res = REAL(tcgetattr)(fd, termios_p);
3816 if (!res && termios_p)
3817 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, termios_p, struct_termios_sz);