Home
last modified time | relevance | path

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

/bootable/recovery/
Dwear_ui.cpp233 if (*ptr == '\n' || text_col_ >= text_cols_) { in Print()
234 text_[text_row_][text_col_] = '\0'; in Print()
235 text_col_ = 0; in Print()
239 if (*ptr != '\n') text_[text_row_][text_col_++] = *ptr; in Print()
241 text_[text_row_][text_col_] = '\0'; in Print()
339 if (text_col_ == 0 && text_row_ >= text_rows_ - 2) { in ShowFile()
349 if (ch != '\n') text_[text_row_][text_col_++] = ch; in PutChar()
350 if (ch == '\n' || text_col_ >= text_cols_) { in PutChar()
351 text_col_ = 0; in PutChar()
369 text_col_ = 0; in ClearText()
[all …]
Dscreen_ui.cpp64 text_col_(0), in ScreenRecoveryUI()
473 text_col_ = text_row_ = 0; in Init()
626 if (*ptr == '\n' || text_col_ >= text_cols_) { in PrintV()
627 text_[text_row_][text_col_] = '\0'; in PrintV()
628 text_col_ = 0; in PrintV()
632 if (*ptr != '\n') text_[text_row_][text_col_++] = *ptr; in PrintV()
634 text_[text_row_][text_col_] = '\0'; in PrintV()
656 if (ch != '\n') text_[text_row_][text_col_++] = ch; in PutChar()
657 if (ch == '\n' || text_col_ >= text_cols_) { in PutChar()
658 text_col_ = 0; in PutChar()
[all …]
Dscreen_ui.h108 size_t text_col_, text_row_, text_top_; variable