Lines Matching refs:cell

1039 	struct tty3270_cell *cell;  in tty3270_put_character()  local
1044 cell = line->cells + line->len; in tty3270_put_character()
1045 cell->character = tp->view.ascebc[' ']; in tty3270_put_character()
1046 cell->highlight = tp->highlight; in tty3270_put_character()
1047 cell->f_color = tp->f_color; in tty3270_put_character()
1052 cell = line->cells + tp->cx; in tty3270_put_character()
1053 cell->character = tp->view.ascebc[(unsigned int) ch]; in tty3270_put_character()
1054 cell->highlight = tp->highlight; in tty3270_put_character()
1055 cell->f_color = tp->f_color; in tty3270_put_character()
1065 struct tty3270_cell *cell; in tty3270_convert_line() local
1078 for (i = 0, cell = line->cells; i < line->len; i++, cell++) { in tty3270_convert_line()
1079 if (cell->highlight != highlight) { in tty3270_convert_line()
1081 highlight = cell->highlight; in tty3270_convert_line()
1083 if (cell->f_color != f_color) { in tty3270_convert_line()
1085 f_color = cell->f_color; in tty3270_convert_line()
1122 for (i = 0, cell = line->cells; i < line->len; i++, cell++) { in tty3270_convert_line()
1123 if (cell->highlight != highlight) { in tty3270_convert_line()
1126 *cp++ = cell->highlight; in tty3270_convert_line()
1127 highlight = cell->highlight; in tty3270_convert_line()
1129 if (cell->f_color != f_color) { in tty3270_convert_line()
1132 *cp++ = cell->f_color; in tty3270_convert_line()
1133 f_color = cell->f_color; in tty3270_convert_line()
1135 *cp++ = cell->character; in tty3270_convert_line()
1266 struct tty3270_cell *cell; in tty3270_erase_characters() local
1270 cell = line->cells + tp->cx++; in tty3270_erase_characters()
1271 cell->character = ' '; in tty3270_erase_characters()
1272 cell->highlight = TAX_RESET; in tty3270_erase_characters()
1273 cell->f_color = TAC_RESET; in tty3270_erase_characters()
1289 struct tty3270_cell *cell; in tty3270_erase_line() local
1297 cell = line->cells + i; in tty3270_erase_line()
1298 cell->character = ' '; in tty3270_erase_line()
1299 cell->highlight = TAX_RESET; in tty3270_erase_line()
1300 cell->f_color = TAC_RESET; in tty3270_erase_line()