Lines Matching defs:update
71 struct list_head update; /* List of lines to update. */
117 #define TTY_UPDATE_LIST 2 /* Update lines in tty3270->update. */
126 * Setup timeout for a device. On timeout trigger an update.
242 * Rebuild update list to print all lines.
251 * Throw away update list and create a new one,
254 list_for_each_entry_safe(s, n, &tp->update, update)
255 list_del_init(&s->update);
264 list_add(&s->update, &tp->update);
286 if (!list_empty(&s->update))
287 list_del(&s->update);
337 if (!list_empty(&s->update))
338 list_del(&s->update);
418 /* Write strings in the update list to the screen. */
419 list_for_each_entry_safe(s, n, &tp->update, update) {
431 list_del_init(&s->update);
437 if (list_empty(&tp->update))
705 /* Interrupt without an outstanding request -> update all */
730 INIT_LIST_HEAD(&tp->update);
1156 if (!list_empty(&s->update))
1157 list_del_init(&s->update);
1205 /* Add line to update list. */
1206 if (list_empty(&s->update)) {
1207 list_add_tail(&s->update, &tp->update);
1700 /* Setup timer to update display after 1/10 second */