Searched refs:text_col_ (Results 1 – 2 of 2) sorted by relevance
327 text_col_(0), in ScreenRecoveryUI()887 text_col_ = text_row_ = 0; in Init()1026 if (*ptr == '\n' || text_col_ >= text_cols_) { in PrintV()1027 text_[text_row_][text_col_] = '\0'; in PrintV()1028 text_col_ = 0; in PrintV()1031 if (*ptr != '\n') text_[text_row_][text_col_++] = *ptr; in PrintV()1033 text_[text_row_][text_col_] = '\0'; in PrintV()1054 if (ch != '\n') text_[text_row_][text_col_++] = ch; in PutChar()1055 if (ch == '\n' || text_col_ >= text_cols_) { in PutChar()1056 text_col_ = 0; in PutChar()[all …]
377 size_t text_col_, text_row_; variable