Home
last modified time | relevance | path

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

/bootable/recovery/recovery_ui/
Dscreen_ui.cpp327 text_col_(0), in ScreenRecoveryUI()
887 text_col_ = text_row_ = 0; in Init()
1026 if (*ptr == '\n' || text_col_ >= text_cols_) { in PrintV()
1027 text_[text_row_][text_col_] = '\0'; in PrintV()
1028 text_col_ = 0; in PrintV()
1031 if (*ptr != '\n') text_[text_row_][text_col_++] = *ptr; in PrintV()
1033 text_[text_row_][text_col_] = '\0'; in PrintV()
1054 if (ch != '\n') text_[text_row_][text_col_++] = ch; in PutChar()
1055 if (ch == '\n' || text_col_ >= text_cols_) { in PutChar()
1056 text_col_ = 0; in PutChar()
[all …]
/bootable/recovery/recovery_ui/include/recovery_ui/
Dscreen_ui.h377 size_t text_col_, text_row_; variable