Home
last modified time | relevance | path

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

/bootable/recovery/
Dscreen_ui.cpp64 text_col_(0), in ScreenRecoveryUI()
402 text_col_ = text_row_ = 0; in Init()
521 if (*ptr == '\n' || text_col_ >= text_cols_) { in Print()
522 text_[text_row_][text_col_] = '\0'; in Print()
523 text_col_ = 0; in Print()
527 if (*ptr != '\n') text_[text_row_][text_col_++] = *ptr; in Print()
529 text_[text_row_][text_col_] = '\0'; in Print()
537 if (ch != '\n') text_[text_row_][text_col_++] = ch; in PutChar()
538 if (ch == '\n' || text_col_ >= text_cols_) { in PutChar()
539 text_col_ = 0; in PutChar()
[all …]
Dscreen_ui.h96 size_t text_col_, text_row_, text_top_; variable