Home
last modified time | relevance | path

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

/bootable/recovery/
Dscreen_ui.cpp62 text_rows_(0), in ScreenRecoveryUI()
285 int row = (text_top_ + text_rows_ - 1) % text_rows_; in draw_screen_locked()
288 ty >= y && count < text_rows_; in draw_screen_locked()
292 if (row < 0) row = text_rows_ - 1; in draw_screen_locked()
395 text_rows_ = gr_fb_height() / char_height; in Init()
398 text_ = Alloc2d(text_rows_, text_cols_ + 1); in Init()
399 file_viewer_text_ = Alloc2d(text_rows_, text_cols_ + 1); in Init()
400 menu_ = Alloc2d(text_rows_, text_cols_ + 1); in Init()
519 if (text_rows_ > 0 && text_cols_ > 0) { in Print()
524 text_row_ = (text_row_ + 1) % text_rows_; in Print()
[all …]
Dscreen_ui.h92 size_t text_cols_, text_rows_; variable