Lines Matching defs:funcs
280 const struct drm_framebuffer_funcs *funcs)
291 fb->funcs = funcs;
301 fb->funcs->destroy(fb);
382 ret = crtc->funcs->set_config(&set);
391 ret = plane->funcs->disable_plane(plane);
410 * @funcs: callbacks for the new CRTC
421 const struct drm_crtc_funcs *funcs)
426 crtc->funcs = funcs;
509 * @funcs: callbacks for this connector
523 const struct drm_connector_funcs *funcs,
536 connector->funcs = funcs;
610 const struct drm_encoder_funcs *funcs,
623 encoder->funcs = funcs;
648 const struct drm_plane_funcs *funcs,
662 plane->funcs = funcs;
1065 encoder->funcs->destroy(encoder);
1070 connector->funcs->destroy(connector);
1089 plane->funcs->destroy(plane);
1093 crtc->funcs->destroy(crtc);
1489 connector->funcs->fill_modes(connector,
1767 plane->funcs->disable_plane(plane);
1837 ret = plane->funcs->update_plane(plane, crtc, fb,
2020 ret = crtc->funcs->set_config(&set);
2053 if (!crtc->funcs->cursor_set) {
2058 ret = crtc->funcs->cursor_set(crtc, file_priv, req->handle,
2063 if (crtc->funcs->cursor_move) {
2064 ret = crtc->funcs->cursor_move(crtc, req->x, req->y);
2159 ret = dev->mode_config.funcs->fb_create(dev, file_priv, &r, &fb);
2344 ret = dev->mode_config.funcs->fb_create(dev, file_priv, r, &fb);
2456 fb->funcs->create_handle(fb, file_priv, &r->handle);
2517 if (fb->funcs->dirty) {
2518 ret = fb->funcs->dirty(fb, file_priv, flags, r->color,
3214 if (connector->funcs->dpms)
3215 (*connector->funcs->dpms)(connector, (int)value);
3217 } else if (connector->funcs->set_property)
3218 ret = connector->funcs->set_property(connector, property, value);
3233 if (crtc->funcs->set_property)
3234 ret = crtc->funcs->set_property(crtc, property, value);
3248 if (plane->funcs->set_property)
3249 ret = plane->funcs->set_property(plane, property, value);
3430 if (crtc->funcs->gamma_set == NULL) {
3460 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
3558 if (crtc->funcs->page_flip == NULL)
3607 ret = crtc->funcs->page_flip(crtc, fb, e);
3629 if (crtc->funcs->reset)
3630 crtc->funcs->reset(crtc);
3633 if (encoder->funcs->reset)
3634 encoder->funcs->reset(encoder);
3639 if (connector->funcs->reset)
3640 connector->funcs->reset(connector);