Lines Matching refs:cell
1043 struct tty3270_cell *cell; in tty3270_put_character() local
1048 cell = line->cells + line->len; in tty3270_put_character()
1049 cell->character = tp->view.ascebc[' ']; in tty3270_put_character()
1050 cell->highlight = tp->highlight; in tty3270_put_character()
1051 cell->f_color = tp->f_color; in tty3270_put_character()
1056 cell = line->cells + tp->cx; in tty3270_put_character()
1057 cell->character = tp->view.ascebc[(unsigned int) ch]; in tty3270_put_character()
1058 cell->highlight = tp->highlight; in tty3270_put_character()
1059 cell->f_color = tp->f_color; in tty3270_put_character()
1069 struct tty3270_cell *cell; in tty3270_convert_line() local
1082 for (i = 0, cell = line->cells; i < line->len; i++, cell++) { in tty3270_convert_line()
1083 if (cell->highlight != highlight) { in tty3270_convert_line()
1085 highlight = cell->highlight; in tty3270_convert_line()
1087 if (cell->f_color != f_color) { in tty3270_convert_line()
1089 f_color = cell->f_color; in tty3270_convert_line()
1126 for (i = 0, cell = line->cells; i < line->len; i++, cell++) { in tty3270_convert_line()
1127 if (cell->highlight != highlight) { in tty3270_convert_line()
1130 *cp++ = cell->highlight; in tty3270_convert_line()
1131 highlight = cell->highlight; in tty3270_convert_line()
1133 if (cell->f_color != f_color) { in tty3270_convert_line()
1136 *cp++ = cell->f_color; in tty3270_convert_line()
1137 f_color = cell->f_color; in tty3270_convert_line()
1139 *cp++ = cell->character; in tty3270_convert_line()
1270 struct tty3270_cell *cell; in tty3270_erase_characters() local
1274 cell = line->cells + tp->cx++; in tty3270_erase_characters()
1275 cell->character = ' '; in tty3270_erase_characters()
1276 cell->highlight = TAX_RESET; in tty3270_erase_characters()
1277 cell->f_color = TAC_RESET; in tty3270_erase_characters()
1293 struct tty3270_cell *cell; in tty3270_erase_line() local
1301 cell = line->cells + i; in tty3270_erase_line()
1302 cell->character = ' '; in tty3270_erase_line()
1303 cell->highlight = TAX_RESET; in tty3270_erase_line()
1304 cell->f_color = TAC_RESET; in tty3270_erase_line()