Home
last modified time | relevance | path

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

/bootable/recovery/
Dwear_ui.cpp180 gr_text(gr_sys_font(), x+4, ty, text_[row], 0); in draw_screen_locked()
234 text_[text_row_][text_col_] = '\0'; in Print()
239 if (*ptr != '\n') text_[text_row_][text_col_++] = *ptr; in Print()
241 text_[text_row_][text_col_] = '\0'; in Print()
349 if (ch != '\n') text_[text_row_][text_col_++] = ch; in PutChar()
373 memset(text_[i], 0, text_cols_ + 1); in ClearText()
397 text_[text_row_][text_col_] = '\0'; in PrintV()
402 if (*ptr != '\n') text_[text_row_][text_col_++] = *ptr; in PrintV()
404 text_[text_row_][text_col_] = '\0'; in PrintV()
Dscreen_ui.cpp63 text_(nullptr), in ScreenRecoveryUI()
337 gr_text(gr_sys_font(), 0, ty, text_[row], false); in draw_screen_locked()
469 text_ = Alloc2d(text_rows_, text_cols_ + 1); in Init()
627 text_[text_row_][text_col_] = '\0'; in PrintV()
632 if (*ptr != '\n') text_[text_row_][text_col_++] = *ptr; in PrintV()
634 text_[text_row_][text_col_] = '\0'; in PrintV()
656 if (ch != '\n') text_[text_row_][text_col_++] = ch; in PutChar()
672 memset(text_[i], 0, text_cols_ + 1); in ClearText()
734 char** old_text = text_; in ShowFile()
740 text_ = file_viewer_text_; in ShowFile()
[all …]
Dscreen_ui.h107 char** text_; variable