Lines Matching full:graph

24  * enum media_gobj_type - type of a graph object
43 /* Structs to represent the objects that belong to a media graph */
46 * struct media_gobj - Define a graph object.
55 * All objects on the media graph should have this struct embedded
78 * struct media_graph - Media graph traversal state
80 * @stack: Graph traversal stack; the stack contains information
83 * @stack.entity: pointer to &struct media_entity at the graph.
102 * @graph: Media graph walk during pipeline start / stop
106 struct media_graph graph; member
110 * struct media_link - A link object part of a media graph.
179 * struct media_pad - A media pad graph object.
250 * struct media_entity - A media entity graph object.
320 * struct media_interface - A media interface graph object.
322 * @graph_obj: embedded graph object
323 * @links: List of links pointing to graph entities
358 * media_entity_id() - return the media entity graph object id
370 * @gobj: Pointer to the struct &media_gobj graph object
380 * @gobj: Pointer to the struct &media_gobj graph object
558 * @gobj: Pointer to the struct &media_gobj graph object
567 * @gobj: Pointer to the struct &media_gobj graph object
576 * @gobj: Pointer to the struct &media_gobj graph object
585 * @gobj: Pointer to the struct &media_gobj graph object
600 * media_gobj_create - Initialize a graph object
604 * @gobj: Pointer to the struct &media_gobj graph object
607 * media graph object. It is called automatically if ``media_*_create``
617 * media_gobj_destroy - Stop using a graph object on a media device
619 * @gobj: Pointer to the struct &media_gobj graph object
622 * that remove/destroy media graph objects.
883 * media_graph_walk_init - Allocate resources used by graph walk.
885 * @graph: Media graph structure that will be used to walk the graph
889 struct media_graph *graph, struct media_device *mdev);
892 * media_graph_walk_cleanup - Release resources used by graph walk.
894 * @graph: Media graph structure that will be used to walk the graph
896 void media_graph_walk_cleanup(struct media_graph *graph);
899 * media_graph_walk_start - Start walking the media graph at a
902 * @graph: Media graph structure that will be used to walk the graph
906 * used to allocate resources used for walking the graph. This
907 * function initializes the graph traversal structure to walk the
908 * entities graph starting at the given entity. The traversal
909 * structure must not be modified by the caller during graph
910 * traversal. After the graph walk, the resources must be released
913 void media_graph_walk_start(struct media_graph *graph,
917 * media_graph_walk_next - Get the next entity in the graph
918 * @graph: Media graph structure
920 * Perform a depth-first traversal of the given media entities graph.
922 * The graph structure must have been previously initialized with a call to
925 * Return: returns the next entity in the graph or %NULL if the whole graph
928 struct media_entity *media_graph_walk_next(struct media_graph *graph);