Lines Matching refs:update
47 struct list_head update; /* list of lines to update. */
48 int line_nr; /* line number for next update. */
68 #define CON_UPDATE_LIST 2 /* Update lines in tty3270->update. */
75 * Setup timeout for a device. On timeout trigger an update.
140 * Rebuild update list to print all lines.
149 * Throw away update list and create a new one,
152 list_for_each_entry_safe(s, n, &cp->update, update)
153 list_del_init(&s->update);
157 list_add(&s->update, &cp->update);
178 if (!list_empty(&s->update))
179 list_del(&s->update);
263 /* Write strings in the update list to the screen. */
264 list_for_each_entry_safe(s, n, &cp->update, update) {
270 list_del_init(&s->update);
274 if (list_empty(&cp->update))
424 /* Interrupt without an outstanding request -> update all */
453 if (list_empty(&cp->cline->update)) {
454 list_add_tail(&cp->cline->update, &cp->update);
480 if (!list_empty(&cp->cline->update)) {
481 list_add(&s->update, &cp->cline->update);
482 list_del_init(&cp->cline->update);
626 INIT_LIST_HEAD(&condev->update);