Home
last modified time | relevance | path

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

/bootable/recovery/
Dwear_ui.cpp242 text_[text_row_][text_col_] = '\0'; in Print()
244 text_row_ = (text_row_ + 1) % text_rows_; in Print()
245 if (text_row_ == text_top_) text_top_ = (text_top_ + 1) % text_rows_; in Print()
247 if (*ptr != '\n') text_[text_row_][text_col_++] = *ptr; in Print()
249 text_[text_row_][text_col_] = '\0'; in Print()
343 text_row_ = text_top_ = text_rows_ - 2; in ShowFile()
347 if (text_col_ == 0 && text_row_ >= text_rows_ - 2) { in ShowFile()
348 text_top_ = text_row_; in ShowFile()
357 if (ch != '\n') text_[text_row_][text_col_++] = ch; in PutChar()
360 ++text_row_; in PutChar()
[all …]
Dscreen_ui.cpp66 text_row_(0), in ScreenRecoveryUI()
476 text_col_ = text_row_ = 0; in Init()
607 text_[text_row_][text_col_] = '\0'; in PrintV()
609 text_row_ = (text_row_ + 1) % text_rows_; in PrintV()
610 if (text_row_ == text_top_) text_top_ = (text_top_ + 1) % text_rows_; in PrintV()
612 if (*ptr != '\n') text_[text_row_][text_col_++] = *ptr; in PrintV()
614 text_[text_row_][text_col_] = '\0'; in PrintV()
636 if (ch != '\n') text_[text_row_][text_col_++] = ch; in PutChar()
639 ++text_row_; in PutChar()
641 if (text_row_ == text_top_) text_top_ = (text_top_ + 1) % text_rows_; in PutChar()
[all …]
Dscreen_ui.h109 size_t text_col_, text_row_, text_top_; variable