Searched refs:termios (Results 1 – 5 of 5) sorted by relevance
/hal_espressif-latest/components/newlib/ |
D | termios.c | 14 speed_t cfgetispeed(const struct termios *p) in cfgetispeed() 19 speed_t cfgetospeed(const struct termios *p) in cfgetospeed() 24 int cfsetispeed(struct termios *p, speed_t sp) in cfsetispeed() 35 int cfsetospeed(struct termios *p, speed_t sp) in cfsetospeed()
|
D | CMakeLists.txt | 18 "termios.c"
|
/hal_espressif-latest/components/newlib/platform_include/sys/ |
D | termios.h | 167 struct termios struct 188 speed_t cfgetispeed(const struct termios *p); 196 speed_t cfgetospeed(const struct termios *p); 207 int cfsetispeed(struct termios *p, speed_t sp); 218 int cfsetospeed(struct termios *p, speed_t sp); 253 int tcgetattr(int fd, struct termios *p); 280 int tcsetattr(int fd, int optional_actions, const struct termios *p);
|
/hal_espressif-latest/tools/esptool_py/esptool/ |
D | reset.py | 16 import termios 21 TIOCMSET = getattr(termios, "TIOCMSET", 0x5418) 22 TIOCMGET = getattr(termios, "TIOCMGET", 0x5415) 23 TIOCM_DTR = getattr(termios, "TIOCM_DTR", 0x002) 24 TIOCM_RTS = getattr(termios, "TIOCM_RTS", 0x004)
|
/hal_espressif-latest/tools/idf_monitor/idf_monitor_base/ |
D | console_reader.py | 96 import termios 97 fcntl.ioctl(self.console.fd, termios.TIOCSTI, b'\0')
|