Searched refs:LINE_LEN (Results 1 - 1 of 1) sorted by relevance

/fuchsia/zircon/kernel/lib/console/
H A Dconsole.cpp29 #define LINE_LEN 128 macro
54 static char* history; // HISTORY_LEN rows of LINE_LEN chars a piece
102 return history + line * LINE_LEN;
126 history = static_cast<char*>(calloc(1, HISTORY_LEN * LINE_LEN));
139 strlcpy(history_line(history_next), line, LINE_LEN);
281 strlcpy(buffer, prev_history(&history_cursor), LINE_LEN);
283 strlcpy(buffer, next_history(&history_cursor), LINE_LEN);
296 if (pos == (LINE_LEN - 1)) {
621 debug_buffer = static_cast<char*>(malloc(LINE_LEN));
671 lineread.buffer = static_cast<char*>(malloc(LINE_LEN));
[all...]

Completed in 23 milliseconds