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.
134 * struct media_link - A link object part of a media graph.
203 * struct media_pad - A media pad graph object.
293 * struct media_entity - A media entity graph object.
369 * struct media_interface - A media interface graph object.
371 * @graph_obj: embedded graph object
372 * @links: List of links pointing to graph entities
407 * media_entity_id() - return the media entity graph object id
419 * @gobj: Pointer to the struct &media_gobj graph object
429 * @gobj: Pointer to the struct &media_gobj graph object
607 * @gobj: Pointer to the struct &media_gobj graph object
616 * @gobj: Pointer to the struct &media_gobj graph object
625 * @gobj: Pointer to the struct &media_gobj graph object
634 * @gobj: Pointer to the struct &media_gobj graph object
649 * media_gobj_create - Initialize a graph object
653 * @gobj: Pointer to the struct &media_gobj graph object
656 * media graph object. It is called automatically if ``media_*_create``
666 * media_gobj_destroy - Stop using a graph object on a media device
668 * @gobj: Pointer to the struct &media_gobj graph object
671 * that remove/destroy media graph objects.
1064 * media_graph_walk_init - Allocate resources used by graph walk.
1066 * @graph: Media graph structure that will be used to walk the graph
1069 * The caller is required to hold the media_device graph_mutex during the graph
1070 * walk until the graph state is released.
1075 struct media_graph *graph, struct media_device *mdev);
1078 * media_graph_walk_cleanup - Release resources used by graph walk.
1080 * @graph: Media graph structure that will be used to walk the graph
1082 void media_graph_walk_cleanup(struct media_graph *graph);
1085 * media_graph_walk_start - Start walking the media graph at a
1088 * @graph: Media graph structure that will be used to walk the graph
1092 * used to allocate resources used for walking the graph. This
1093 * function initializes the graph traversal structure to walk the
1094 * entities graph starting at the given entity. The traversal
1095 * structure must not be modified by the caller during graph
1096 * traversal. After the graph walk, the resources must be released
1099 void media_graph_walk_start(struct media_graph *graph,
1103 * media_graph_walk_next - Get the next entity in the graph
1104 * @graph: Media graph structure
1106 * Perform a depth-first traversal of the given media entities graph.
1108 * The graph structure must have been previously initialized with a call to
1111 * Return: returns the next entity in the graph or %NULL if the whole graph
1114 struct media_entity *media_graph_walk_next(struct media_graph *graph);