Lines Matching full:graph

26  * enum media_gobj_type - type of a graph object
45 /* Structs to represent the objects that belong to a media graph */
48 * struct media_gobj - Define a graph object.
57 * All objects on the media graph should have this struct embedded
80 * struct media_graph - Media graph traversal state
82 * @stack: Graph traversal stack; the stack contains information
85 * @stack.entity: pointer to &struct media_entity at the graph.
154 * struct media_link - A link object part of a media graph.
223 * struct media_pad - A media pad graph object.
317 * struct media_entity - A media entity graph object.
389 * struct media_interface - A media interface graph object.
391 * @graph_obj: embedded graph object
392 * @links: List of links pointing to graph entities
427 * media_entity_id() - return the media entity graph object id
439 * @gobj: Pointer to the struct &media_gobj graph object
449 * @gobj: Pointer to the struct &media_gobj graph object
627 * @gobj: Pointer to the struct &media_gobj graph object
636 * @gobj: Pointer to the struct &media_gobj graph object
645 * @gobj: Pointer to the struct &media_gobj graph object
654 * @gobj: Pointer to the struct &media_gobj graph object
669 * media_gobj_create - Initialize a graph object
673 * @gobj: Pointer to the struct &media_gobj graph object
676 * media graph object. It is called automatically if ``media_*_create``
686 * media_gobj_destroy - Stop using a graph object on a media device
688 * @gobj: Pointer to the struct &media_gobj graph object
691 * that remove/destroy media graph objects.
1084 * media_graph_walk_init - Allocate resources used by graph walk.
1086 * @graph: Media graph structure that will be used to walk the graph
1091 * The caller is required to hold the media_device graph_mutex during the graph
1092 * walk until the graph state is released.
1097 struct media_graph *graph, struct media_device *mdev);
1100 * media_graph_walk_cleanup - Release resources used by graph walk.
1102 * @graph: Media graph structure that will be used to walk the graph
1106 void media_graph_walk_cleanup(struct media_graph *graph);
1109 * media_graph_walk_start - Start walking the media graph at a
1112 * @graph: Media graph structure that will be used to walk the graph
1118 * used to allocate resources used for walking the graph. This
1119 * function initializes the graph traversal structure to walk the
1120 * entities graph starting at the given entity. The traversal
1121 * structure must not be modified by the caller during graph
1122 * traversal. After the graph walk, the resources must be released
1125 void media_graph_walk_start(struct media_graph *graph,
1129 * media_graph_walk_next - Get the next entity in the graph
1130 * @graph: Media graph structure
1134 * Perform a depth-first traversal of the given media entities graph.
1136 * The graph structure must have been previously initialized with a call to
1139 * Return: returns the next entity in the graph or %NULL if the whole graph
1142 struct media_entity *media_graph_walk_next(struct media_graph *graph);