Home
last modified time | relevance | path

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

/Zephyr-latest/drivers/console/
Dposix_arch_console.c15 static int n_pend; /* Number of pending characters in buffer */ variable
22 stdout_buff[n_pend++] = c; in print_char()
23 stdout_buff[n_pend] = 0; in print_char()
28 if (n_pend >= _STDOUT_BUF_SIZE - 1) { in print_char()
34 n_pend = 0; in print_char()
45 if (n_pend) { in posix_flush_stdout()
46 stdout_buff[n_pend] = 0; in posix_flush_stdout()
48 n_pend = 0; in posix_flush_stdout()
/Zephyr-latest/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()