Lines Matching defs:connector

356  * @connectors: pointer to array of structures with per-connector data
414 * When a connector or plane is not bound to any CRTC, it's still important
506 struct drm_connector *connector);
634 * drm_atomic_get_existing_connector_state - get connector state, if it exists
636 * @connector: connector to grab
638 * This function returns the connector state for the given connector,
639 * or NULL if the connector is not part of the global atomic state.
646 struct drm_connector *connector)
648 int index = drm_connector_index(connector);
657 * drm_atomic_get_old_connector_state - get connector state, if it exists
659 * @connector: connector to grab
661 * This function returns the old connector state for the given connector,
662 * or NULL if the connector is not part of the global atomic state.
666 struct drm_connector *connector)
668 int index = drm_connector_index(connector);
677 * drm_atomic_get_new_connector_state - get connector state, if it exists
679 * @connector: connector to grab
681 * This function returns the new connector state for the given connector,
682 * or NULL if the connector is not part of the global atomic state.
686 struct drm_connector *connector)
688 int index = drm_connector_index(connector);
751 * @connector: &struct drm_connector iteration cursor
762 #define for_each_oldnew_connector_in_state(__state, connector, old_connector_state, new_connector_state, __i) \
767 ((connector) = (__state)->connectors[__i].ptr, \
768 (void)(connector) /* Only to avoid unused-but-set-variable warning */, \
775 * @connector: &struct drm_connector iteration cursor
784 #define for_each_old_connector_in_state(__state, connector, old_connector_state, __i) \
789 ((connector) = (__state)->connectors[__i].ptr, \
790 (void)(connector) /* Only to avoid unused-but-set-variable warning */, \
796 * @connector: &struct drm_connector iteration cursor
805 #define for_each_new_connector_in_state(__state, connector, new_connector_state, __i) \
810 ((connector) = (__state)->connectors[__i].ptr, \
811 (void)(connector) /* Only to avoid unused-but-set-variable warning */, \
1082 * and a bridge, or a bridge and a connector.