Lines Matching refs:end
443 static void __call_console_drivers(unsigned start, unsigned end) in __call_console_drivers() argument
451 con->write(con, &LOG_BUF(start), end - start); in __call_console_drivers()
471 unsigned end, int msg_log_level) in _call_console_drivers() argument
474 console_drivers && start != end) { in _call_console_drivers()
475 if ((start & LOG_BUF_MASK) > (end & LOG_BUF_MASK)) { in _call_console_drivers()
479 __call_console_drivers(0, end & LOG_BUF_MASK); in _call_console_drivers()
481 __call_console_drivers(start, end); in _call_console_drivers()
491 static void call_console_drivers(unsigned start, unsigned end) in call_console_drivers() argument
496 BUG_ON(((int)(start - end)) > 0); in call_console_drivers()
500 while (cur_index != end) { in call_console_drivers()
501 if (msg_level < 0 && ((end - cur_index) > 2) && in call_console_drivers()
510 while (cur_index != end) { in call_console_drivers()
531 _call_console_drivers(start_print, end, msg_level); in call_console_drivers()
799 static void call_console_drivers(unsigned start, unsigned end) in call_console_drivers() argument