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()
687 INIT_LIST_HEAD(&tp->lines); in tty3270_alloc_view()
767 int lines; in tty3270_alloc_screen() local
773 for (lines = 0; lines < rows - 2; lines++) { in tty3270_alloc_screen()
775 screen[lines].cells = kzalloc(size, GFP_KERNEL); in tty3270_alloc_screen()
776 if (!screen[lines].cells) in tty3270_alloc_screen()
781 while (lines--) in tty3270_alloc_screen()
782 kfree(screen[lines].cells); in tty3270_alloc_screen()
794 int lines; in tty3270_free_screen() local
796 for (lines = 0; lines < rows - 2; lines++) in tty3270_free_screen()
797 kfree(screen[lines].cells); in tty3270_free_screen()
1101 list_for_each_entry_reverse(s, &tp->lines, list) in tty3270_convert_line()