Home
last modified time | relevance | path

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

/bootable/recovery/
Dwear_ui.cpp239 if (*ptr == '\n' || text_col_ >= text_cols_) { in Print()
240 text_[text_row_][text_col_] = '\0'; in Print()
241 text_col_ = 0; in Print()
245 if (*ptr != '\n') text_[text_row_][text_col_++] = *ptr; in Print()
247 text_[text_row_][text_col_] = '\0'; in Print()
343 if (text_col_ == 0 && text_row_ >= text_rows_ - 2) { in ShowFile()
353 if (ch != '\n') text_[text_row_][text_col_++] = ch; in PutChar()
354 if (ch == '\n' || text_col_ >= text_cols_) { in PutChar()
355 text_col_ = 0; in PutChar()
389 if (*ptr == '\n' || text_col_ >= text_cols_) { in PrintV()
[all …]
Dscreen_ui.cpp67 text_col_(0), in ScreenRecoveryUI()
512 text_col_ = text_row_ = 0; in Init()
642 if (*ptr == '\n' || text_col_ >= text_cols_) { in PrintV()
643 text_[text_row_][text_col_] = '\0'; in PrintV()
644 text_col_ = 0; in PrintV()
648 if (*ptr != '\n') text_[text_row_][text_col_++] = *ptr; in PrintV()
650 text_[text_row_][text_col_] = '\0'; in PrintV()
672 if (ch != '\n') text_[text_row_][text_col_++] = ch; in PutChar()
673 if (ch == '\n' || text_col_ >= text_cols_) { in PutChar()
674 text_col_ = 0; in PutChar()
[all …]
Dscreen_ui.h126 size_t text_col_, text_row_, text_top_; variable