Lines Matching refs:lines
69 struct list_head lines; /* List of lines. */ member
256 list_for_each_entry_reverse(s, &tp->lines, list) { in tty3270_rebuild_update()
281 list_for_each_entry_safe(s, n, &tp->lines, list) { in tty3270_alloc_string()
315 list_add_tail(&s->list, &tp->lines); in tty3270_blank_line()
683 INIT_LIST_HEAD(&tp->lines); in tty3270_alloc_view()
763 int lines; in tty3270_alloc_screen() local
769 for (lines = 0; lines < rows - 2; lines++) { in tty3270_alloc_screen()
771 screen[lines].cells = kzalloc(size, GFP_KERNEL); in tty3270_alloc_screen()
772 if (!screen[lines].cells) in tty3270_alloc_screen()
777 while (lines--) in tty3270_alloc_screen()
778 kfree(screen[lines].cells); in tty3270_alloc_screen()
790 int lines; in tty3270_free_screen() local
792 for (lines = 0; lines < rows - 2; lines++) in tty3270_free_screen()
793 kfree(screen[lines].cells); in tty3270_free_screen()
1097 list_for_each_entry_reverse(s, &tp->lines, list) in tty3270_convert_line()