Home
last modified time | relevance | path

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

/bootable/recovery/
Dwear_ui.cpp181 gr_text(gr_sys_font(), x + 4, ty, text_[row], 0); in draw_screen_locked()
240 text_[text_row_][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()
353 if (ch != '\n') text_[text_row_][text_col_++] = ch; in PutChar()
390 text_[text_row_][text_col_] = '\0'; in PrintV()
395 if (*ptr != '\n') text_[text_row_][text_col_++] = *ptr; in PrintV()
397 text_[text_row_][text_col_] = '\0'; in PrintV()
Dscreen_ui.cpp66 text_(nullptr), in ScreenRecoveryUI()
375 DrawTextLine(kMarginWidth, ty, text_[row], false); in draw_screen_locked()
509 text_ = Alloc2d(text_rows_, text_cols_ + 1); in Init()
643 text_[text_row_][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()
688 memset(text_[i], 0, text_cols_ + 1); in ClearText()
750 char** old_text = text_; in ShowFile()
756 text_ = file_viewer_text_; in ShowFile()
[all …]
Dscreen_ui.h125 char** text_; variable