Lines Matching defs:links

161 		list_add_tail(&gobj->list, &mdev->links);
287 graph->stack[graph->top].link = entity->links.next;
402 while (link_top(graph) != &stack_top(graph)->links)
419 * traversal, with a list of links to be visited to continue the traversal.
424 * internal pad dependencies in the entity, and then links in the graph. It
425 * does so by iterating over all links of the entity, and following enabled
426 * links that originate from a pad that is internally connected to the incoming
434 * @links: Links left to be visited
438 struct list_head *links;
514 entry->links = pad->entity->links.next;
524 * Move the top entry link cursor to the next link. If all links of the entry
537 if (entry->links->next == &entry->pad->entity->links) {
539 "media pipeline: entry %u has no more links, popping\n",
546 entry->links = entry->links->next;
606 link = list_entry(entry->links, typeof(*link), list);
624 * Skip links that originate from a different pad than the incoming pad
656 * If we're done iterating over links, iterate over pads of the entity.
671 * Skip the origin pad (already handled), pad that have links
672 * (already discovered through iterating over links) and pads
813 * 2. Validate all active links whose sink is the current pad.
818 /* Skip links unrelated to the current pad. */
822 /* Record if the pad has links and enabled links. */
1060 /* Remove the reverse links for a data link. */
1070 list_for_each_entry_safe(rlink, tmp, &remote->links, list) {
1133 link = media_add_link(&source->links);
1148 backlink = media_add_link(&sink->links);
1246 list_for_each_entry_safe(link, tmp, &entity->links, list)
1394 list_for_each_entry(link, &entity->links, list) {
1431 list_for_each_entry(link, &pad->entity->links, list) {
1518 INIT_LIST_HEAD(&intf->links);
1559 link = media_add_link(&intf->links);
1601 list_for_each_entry_safe(link, tmp, &intf->links, list)
1626 link = media_add_link(&primary->links);
1648 : list_first_entry(&entity->links, typeof(*link), list);
1650 list_for_each_entry_from(link, &entity->links, list)