Home
last modified time | relevance | path

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

/bootable/recovery/
Dscreen_ui.cpp65 text_row_(0), in ScreenRecoveryUI()
402 text_col_ = text_row_ = 0; in Init()
522 text_[text_row_][text_col_] = '\0'; in Print()
524 text_row_ = (text_row_ + 1) % text_rows_; in Print()
525 if (text_row_ == text_top_) text_top_ = (text_top_ + 1) % text_rows_; in Print()
527 if (*ptr != '\n') text_[text_row_][text_col_++] = *ptr; in Print()
529 text_[text_row_][text_col_] = '\0'; in Print()
537 if (ch != '\n') text_[text_row_][text_col_++] = ch; in PutChar()
540 ++text_row_; in PutChar()
542 if (text_row_ == text_top_) text_top_ = (text_top_ + 1) % text_rows_; in PutChar()
[all …]
Dscreen_ui.h96 size_t text_col_, text_row_, text_top_; variable