Home
last modified time | relevance | path

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

/Zephyr-latest/subsys/logging/backends/
Dlog_backend_rtt.c61 static uint8_t line_buf[MESSAGE_SIZE + DROP_MSG_LEN]; variable
110 line_pos = line_buf; in char_out_drop_mode()
114 if (line_pos < line_buf + MESSAGE_SIZE - 1) { in char_out_drop_mode()
125 __ASSERT_NO_MSG(line_pos > line_buf); in line_out_drop_mode()
128 if (line_pos - line_buf == 1) { in line_out_drop_mode()
138 __ASSERT_NO_MSG(line_pos - line_buf <= MESSAGE_SIZE); in line_out_drop_mode()
140 memmove(line_buf + DROP_MSG_LEN, line_buf, line_pos - line_buf); in line_out_drop_mode()
141 (void)memcpy(line_buf, drop_msg, DROP_MSG_LEN); in line_out_drop_mode()
147 line_buf[DROP_MSG_LEN - 2] = ' '; in line_out_drop_mode()
148 line_buf[DROP_MSG_LEN - 3] = (uint8_t) ('0' + cnt); in line_out_drop_mode()
[all …]
/Zephyr-latest/drivers/console/
Dipm_console_receiver.c38 (uint8_t *)&config_info->line_buf[pos], in ipm_console_thread()
47 if (config_info->line_buf[pos] == '\n' || in ipm_console_thread()
50 config_info->line_buf[pos] = '\0'; in ipm_console_thread()
52 config_info->line_buf[pos + 1] = '\0'; in ipm_console_thread()
56 config_info->line_buf); in ipm_console_thread()
60 config_info->line_buf); in ipm_console_thread()
/Zephyr-latest/tests/drivers/ipm/src/
Dmain.c59 static char line_buf[LINE_BUF_SIZE]; variable
67 .line_buf = line_buf,
/Zephyr-latest/drivers/display/
Dls0xx.c127 struct spi_buf line_buf[3] = { in ls0xx_update_display() local
141 .buffers = line_buf, in ls0xx_update_display()
142 .count = ARRAY_SIZE(line_buf), in ls0xx_update_display()
153 line_buf[1].buf = (uint8_t *)data; in ls0xx_update_display()
/Zephyr-latest/include/zephyr/drivers/console/
Dipm_console.h54 char *line_buf; member