Home
last modified time | relevance | path

Searched refs:drm_fd_ (Results 1 – 2 of 2) sorted by relevance

/hardware/qcom/sm7250/display/sde-drm/
Ddrm_dpps_mgr_imp.cpp59 drm_fd_ = -1; in ~DRMDppsManagerImp()
68 if (drm_fd_ < 0 ) { in GetDrmResources()
69 DRM_LOGE("Invalid drm_fd_ %d", drm_fd_); in GetDrmResources()
74 conn = drmModeGetConnector(drm_fd_, res->connectors[i]); in GetDrmResources()
91 enc = drmModeGetEncoder(drm_fd_, conn->encoders[i]); in GetDrmResources()
111 crtc = drmModeGetCrtc(drm_fd_, res->crtcs[i]); in GetDrmResources()
135 if (drm_fd_ < 0 || crtc_id_ < 0) { in InitCrtcProps()
136 DRM_LOGE("Invalid drm_fd_ %d or crtc_id_ %d", drm_fd_, crtc_id_); in InitCrtcProps()
141 drmModeObjectGetProperties(drm_fd_, crtc_id_, DRM_MODE_OBJECT_CRTC); in InitCrtcProps()
148 drmModePropertyRes *info = drmModeGetProperty(drm_fd_, props->props[j]); in InitCrtcProps()
[all …]
Ddrm_dpps_mgr_imp.h74 int drm_fd_ = -1; variable