Home
last modified time | relevance | path

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

/bootable/recovery/recovery_ui/
Dscreen_ui.cpp328 text_col_(0), in ScreenRecoveryUI()
922 text_col_ = text_row_ = 0; in Init()
1061 if (*ptr == '\n' || text_col_ >= text_cols_) { in PrintV()
1062 text_[text_row_][text_col_] = '\0'; in PrintV()
1063 text_col_ = 0; in PrintV()
1066 if (*ptr != '\n') text_[text_row_][text_col_++] = *ptr; in PrintV()
1068 text_[text_row_][text_col_] = '\0'; in PrintV()
1089 if (ch != '\n') text_[text_row_][text_col_++] = ch; in PutChar()
1090 if (ch == '\n' || text_col_ >= text_cols_) { in PutChar()
1091 text_col_ = 0; in PutChar()
[all …]
/bootable/recovery/recovery_ui/include/recovery_ui/
Dscreen_ui.h380 size_t text_col_, text_row_; variable