Lines Matching refs:c
127 const char *c, *end; in printk_safe_flush_buffer() local
130 c = start; in printk_safe_flush_buffer()
135 while (c < end) { in printk_safe_flush_buffer()
136 if (*c == '\n') { in printk_safe_flush_buffer()
137 printk_safe_flush_line(start, c - start + 1); in printk_safe_flush_buffer()
138 start = ++c; in printk_safe_flush_buffer()
144 if ((c + 1 < end) && printk_get_level(c)) { in printk_safe_flush_buffer()
146 c = printk_skip_level(c); in printk_safe_flush_buffer()
150 printk_safe_flush_line(start, c - start); in printk_safe_flush_buffer()
151 start = c++; in printk_safe_flush_buffer()
157 c++; in printk_safe_flush_buffer()