Searched refs:console (Results 1 – 13 of 13) sorted by relevance
| /components/net/at/src/ |
| A D | at_cli.c | 63 rt_device_t console; in at_cli_init() local 73 console = rt_console_get_device(); in at_cli_init() 74 if (console) in at_cli_init() 77 odev_rx_ind = console->rx_indicate; in at_cli_init() 78 rt_device_set_rx_indicate(console, console_getchar_rx_ind); in at_cli_init() 87 rt_device_t console; in at_cli_deinit() local 90 console = rt_console_get_device(); in at_cli_deinit() 91 if (console && odev_rx_ind) in at_cli_deinit() 94 rt_device_set_rx_indicate(console, odev_rx_ind); in at_cli_deinit()
|
| /components/utilities/ulog/backend/ |
| A D | console_be.c | 20 static struct ulog_backend console = { 0 }; variable 32 console.output = ulog_console_backend_output; in ulog_console_backend_init() 34 ulog_backend_register(&console, "console", RT_TRUE); in ulog_console_backend_init()
|
| /components/libc/compilers/picolibc/ |
| A D | iob.c | 44 rt_device_t console = rt_console_get_device(); in __fputc() local 45 if (console) in __fputc() 47 rt_ssize_t rc = rt_device_write(console, -1, &c, 1); in __fputc()
|
| /components/libc/compilers/armlibc/ |
| A D | syscalls.c | 209 rt_device_t console; in _sys_write() local 210 console = rt_console_get_device(); in _sys_write() 211 if (console) in _sys_write() 213 rt_device_write(console, -1, buf, len); in _sys_write()
|
| /components/libc/compilers/newlib/ |
| A D | syscalls.c | 301 rt_device_t console; in _write_r() local 303 console = rt_console_get_device(); in _write_r() 304 if (console) in _write_r() 305 return rt_device_write(console, -1, buf, nbytes); in _write_r()
|
| /components/drivers/ofw/ |
| A D | ofw.c | 187 const char *console, **ofw_name; in tty_device_compare() local 198 console = (const char *)args_list[2]; in tty_device_compare() 203 if (id && id->type[0] && !strncmp(id->type, console, tty_name_len)) in tty_device_compare() 231 const char *console = con; in ofw_console_tty_find() local 241 tty_name_len = con - console; in ofw_console_tty_find() 253 args_list[2] = (rt_ubase_t)console; in ofw_console_tty_find()
|
| /components/drivers/virtio/ |
| A D | virtio_console.c | 28 struct virtio_console_device *console; member 153 port_dev->console = virtio_console_dev; in virtio_console_port_create() 214 struct virtio_console_device *virtio_console_dev = port_dev->console; in virtio_console_port_init() 266 …if (port_dev->port_id == 0 && virtio_has_feature(&port_dev->console->virtio_dev, VIRTIO_CONSOLE_F_… in virtio_console_port_open() 283 virtio_console_port_destroy(port_dev->console, port_dev); in virtio_console_port_close() 304 struct virtio_device *virtio_dev = &port_dev->console->virtio_dev; in virtio_console_port_read() 355 struct virtio_device *virtio_dev = &port_dev->console->virtio_dev; in virtio_console_port_write()
|
| /components/net/lwip/lwip-2.0.3/src/apps/httpd/makefsdata/ |
| A D | readme.txt | 4 There is also a plain C console application doing the same and extended a bit.
|
| /components/net/lwip/lwip-2.1.2/src/apps/http/makefsdata/ |
| A D | readme.txt | 4 There is also a plain C console application doing the same and extended a bit.
|
| /components/utilities/ymodem/ |
| A D | ry_sy.c | 265 MSH_CMD_EXPORT(ry, YMODEM Receive e.g: ry file_path [uart0] default by console.); 294 MSH_CMD_EXPORT(sy, YMODEM Send e.g: sy file_path [uart0] default by console.);
|
| /components/finsh/ |
| A D | shell.c | 524 rt_device_t console = rt_console_get_device(); in finsh_thread_entry() local 525 if (console) in finsh_thread_entry() 527 finsh_set_device(console->parent.name); in finsh_thread_entry()
|
| /components/utilities/ |
| A D | Kconfig | 176 bool "Enable console backend."
|
| /components/lwp/ |
| A D | lwp_syscall.c | 4412 rt_device_t console = RT_NULL; in sys_log() local 4429 console = rt_console_get_device(); in sys_log() 4431 if (console && __sys_log_enable) in sys_log() 4433 rt_device_write(console, -1, klog, size); in sys_log()
|
Completed in 30 milliseconds