Lines Matching refs:cells
49 struct tty3270_cell *cells; member
775 screen[lines].cells = kzalloc(size, GFP_KERNEL); in tty3270_alloc_screen()
776 if (!screen[lines].cells) in tty3270_alloc_screen()
782 kfree(screen[lines].cells); in tty3270_alloc_screen()
797 kfree(screen[lines].cells); in tty3270_free_screen()
1048 cell = line->cells + line->len; in tty3270_put_character()
1056 cell = line->cells + tp->cx; in tty3270_put_character()
1082 for (i = 0, cell = line->cells; i < line->len; i++, cell++) { in tty3270_convert_line()
1126 for (i = 0, cell = line->cells; i < line->len; i++, cell++) { in tty3270_convert_line()
1222 line->cells[line->len].character = tp->view.ascebc[' ']; in tty3270_insert_characters()
1223 line->cells[line->len].highlight = TAX_RESET; in tty3270_insert_characters()
1224 line->cells[line->len].f_color = TAC_RESET; in tty3270_insert_characters()
1231 line->cells[tp->cx + n + k] = line->cells[tp->cx + k]; in tty3270_insert_characters()
1236 line->cells[tp->cx + n].character = tp->view.ascebc[' ']; in tty3270_insert_characters()
1237 line->cells[tp->cx + n].highlight = tp->highlight; in tty3270_insert_characters()
1238 line->cells[tp->cx + n].f_color = tp->f_color; in tty3270_insert_characters()
1259 line->cells[i] = line->cells[i + n]; in tty3270_delete_characters()
1274 cell = line->cells + tp->cx++; in tty3270_erase_characters()
1301 cell = line->cells + i; in tty3270_erase_line()