Home | History | Annotate | Download | only in recovery

Lines Matching full:text_cols_

63     text_cols_(0),
462 text_cols_ = gr_fb_width() / char_width_;
464 text_ = Alloc2d(text_rows_, text_cols_ + 1);
465 file_viewer_text_ = Alloc2d(text_rows_, text_cols_ + 1);
466 menu_ = Alloc2d(text_rows_, text_cols_ + 1);
614 if (text_rows_ > 0 && text_cols_ > 0) {
616 if (*ptr == '\n' || text_col_ >= text_cols_) {
647 if (ch == '\n' || text_col_ >= text_cols_) {
662 memset(text_[i], 0, text_cols_ + 1);
745 if (text_rows_ > 0 && text_cols_ > 0) {
749 strncpy(menu_[i], items[i], text_cols_ - 1);
750 menu_[i][text_cols_ - 1] = '\0';
779 if (show_menu && text_rows_ > 0 && text_cols_ > 0) {