Lines Matching defs:lines
59 * 1) describe line orientation & lines list concept against screen
60 * 2) describe conversion of screen to lines
70 struct list_head lines; /* List of lines. */
71 struct list_head update; /* List of lines to update. */
73 int nr_lines; /* # lines in list. */
74 int nr_up; /* # lines up in history. */
106 struct list_head rcl_lines; /* List of recallable lines. */
117 #define TTY_UPDATE_LIST 2 /* Update lines in tty3270->update. */
134 * The input line are the two last lines of the screen.
242 * Rebuild update list to print all lines.
252 * containing all lines that will fit on the screen.
258 list_for_each_entry_reverse(s, &tp->lines, list) {
283 list_for_each_entry_safe(s, n, &tp->lines, list) {
317 list_add_tail(&s->list, &tp->lines);
324 * Create a blank screen and remove all lines from the history.
335 list_for_each_entry_safe(s, n, &tp->lines, list) {
729 INIT_LIST_HEAD(&tp->lines);
809 int lines;
815 for (lines = 0; lines < rows - 2; lines++) {
817 screen[lines].cells = kzalloc(size, GFP_KERNEL);
818 if (!screen[lines].cells)
823 while (lines--)
824 kfree(screen[lines].cells);
836 int lines;
838 for (lines = 0; lines < rows - 2; lines++)
839 kfree(screen[lines].cells);
1145 list_for_each_entry_reverse(s, &tp->lines, list)