Lines Matching refs:target
333 * Move all of the nodes from this list to the target list
335 void move_nodes_to(exec_list *target);
338 * Append all nodes from the source list to the end of the target list
343 * Prepend all nodes from the source list to the beginning of the target
485 exec_list_move_nodes_to(struct exec_list *list, struct exec_list *target)
488 exec_list_make_empty(target);
490 target->head_sentinel.next = list->head_sentinel.next;
491 target->head_sentinel.prev = NULL;
492 target->tail_sentinel.next = NULL;
493 target->tail_sentinel.prev = list->tail_sentinel.prev;
495 target->head_sentinel.next->prev = &target->head_sentinel;
496 target->tail_sentinel.prev->next = &target->tail_sentinel;
508 /* Link the first node of the source with the last node of the target list.
513 /* Make the tail of the source list be the tail of the target list.
656 inline void exec_list::move_nodes_to(exec_list *target)
658 exec_list_move_nodes_to(this, target);