Lines Matching defs:state
53 * lock so that other users can't see inconsistent state.
271 * changes the software state of the property, it does not call into the
340 * This function retrieves the softare state of the given property for the given
367 * This function retrieves the default state of the given property as passed in
519 struct drm_atomic_state *state;
523 state = drm_atomic_state_alloc(dev);
524 if (!state)
528 state->acquire_ctx = &ctx;
531 if (prop == state->dev->mode_config.dpms_property) {
537 ret = drm_atomic_connector_commit_dpms(state,
541 ret = drm_atomic_set_property(state, file_priv, obj, prop, prop_value);
544 ret = drm_atomic_commit(state);
548 drm_atomic_state_clear(state);
553 drm_atomic_state_put(state);