Home
last modified time | relevance | path

Searched refs:n_pend (Results 1 – 2 of 2) sorted by relevance

/Zephyr-Core-3.5.0/drivers/console/
Dposix_arch_console.c13 static int n_pend; /* Number of pending characters in buffer */ variable
20 stdout_buff[n_pend++] = c; in print_char()
21 stdout_buff[n_pend] = 0; in print_char()
26 if (n_pend >= _STDOUT_BUF_SIZE - 1) { in print_char()
32 n_pend = 0; in print_char()
43 if (n_pend) { in posix_flush_stdout()
44 stdout_buff[n_pend] = 0; in posix_flush_stdout()
46 n_pend = 0; in posix_flush_stdout()
/Zephyr-Core-3.5.0/subsys/logging/backends/
Dlog_backend_native_posix.c19 static int n_pend; /* Number of pending characters in buffer */ variable
31 stdout_buff[n_pend++] = c; in preprint_char()
32 stdout_buff[n_pend] = 0; in preprint_char()
37 if (n_pend >= _STDOUT_BUF_SIZE - 1) { in preprint_char()
43 n_pend = 0; in preprint_char()