Searched refs:termios (Results 1 – 13 of 13) sorted by relevance
/hal_espressif-3.6.0/components/newlib/platform_include/sys/ |
D | termios.h | 175 struct termios struct 196 speed_t cfgetispeed(const struct termios *p); 204 speed_t cfgetospeed(const struct termios *p); 215 int cfsetispeed(struct termios *p, speed_t sp); 226 int cfsetospeed(struct termios *p, speed_t sp); 261 int tcgetattr(int fd, struct termios *p); 288 int tcsetattr(int fd, int optional_actions, const struct termios *p);
|
/hal_espressif-3.6.0/components/newlib/ |
D | termios.c | 22 speed_t cfgetispeed(const struct termios *p) in cfgetispeed() 27 speed_t cfgetospeed(const struct termios *p) in cfgetospeed() 32 int cfsetispeed(struct termios *p, speed_t sp) in cfsetispeed() 43 int cfsetospeed(struct termios *p, speed_t sp) in cfsetospeed()
|
D | CMakeLists.txt | 18 "termios.c"
|
/hal_espressif-3.6.0/components/esptool_py/esptool/esptool/ |
D | reset.py | 15 import termios 20 TIOCMSET = getattr(termios, "TIOCMSET", 0x5418) 21 TIOCMGET = getattr(termios, "TIOCMGET", 0x5415) 22 TIOCM_DTR = getattr(termios, "TIOCM_DTR", 0x002) 23 TIOCM_RTS = getattr(termios, "TIOCM_RTS", 0x004)
|
/hal_espressif-3.6.0/components/vfs/test/ |
D | test_vfs_uart.c | 238 struct termios tios, tios_result; 253 memset(&tios_result, 0xFF, sizeof(struct termios)); 260 memset(&tios_result, 0xFF, sizeof(struct termios)); 282 memset(&tios_result, 0xFF, sizeof(struct termios)); 299 memset(&tios_result, 0xFF, sizeof(struct termios)); 337 memset(&tios_result, 0xFF, sizeof(struct termios));
|
/hal_espressif-3.6.0/components/vfs/include/ |
D | esp_vfs.h | 205 …int (*tcsetattr_p)(void *ctx, int fd, int optional_actions, const struct termios *p); /*!< t… 206 …int (*tcsetattr)(int fd, int optional_actions, const struct termios *p); /*!< t… 209 …int (*tcgetattr_p)(void *ctx, int fd, struct termios *p); /*!< t… 210 …int (*tcgetattr)(int fd, struct termios *p); /*!< t…
|
/hal_espressif-3.6.0/tools/idf_monitor_base/ |
D | console_reader.py | 96 import termios 97 fcntl.ioctl(self.console.fd, termios.TIOCSTI, b'\0')
|
/hal_espressif-3.6.0/components/vfs/ |
D | vfs_usb_serial_jtag.c | 276 static int usb_serial_jtag_tcsetattr(int fd, int optional_actions, const struct termios *p) in usb_serial_jtag_tcsetattr() 308 static int usb_serial_jtag_tcgetattr(int fd, struct termios *p) in usb_serial_jtag_tcgetattr() 315 memset(p, 0, sizeof(struct termios)); in usb_serial_jtag_tcgetattr()
|
D | vfs_console.c | 134 int console_tcsetattr(int fd, int optional_actions, const struct termios *p) in console_tcsetattr() 139 int console_tcgetattr(int fd, struct termios *p) in console_tcgetattr()
|
D | Kconfig | 67 bool "Provide termios.h functions" 72 Disabling this option can save memory when the support for termios.h is not required.
|
D | vfs_uart.c | 513 static int uart_tcsetattr(int fd, int optional_actions, const struct termios *p) in uart_tcsetattr() 718 static int uart_tcgetattr(int fd, struct termios *p) in uart_tcgetattr() 730 memset(p, 0, sizeof(struct termios)); in uart_tcgetattr()
|
D | vfs.c | 1107 int tcgetattr(int fd, struct termios *p) in tcgetattr() 1121 int tcsetattr(int fd, int optional_actions, const struct termios *p) in tcsetattr()
|
/hal_espressif-3.6.0/docs/en/api-guides/performance/ |
D | size.rst | 414 * :ref:`CONFIG_VFS_SUPPORT_TERMIOS` — can be disabled if the application doesn't use ``termios`` fa…
|