Home
last modified time | relevance | path

Searched refs:possible_crtc_indices (Results 1 – 5 of 5) sorted by relevance

/aosp12/hardware/qcom/sm7250/display/sde-drm/
H A Ddrm_encoder.cpp204 std::set<uint32_t> *possible_crtc_indices) { in GetPossibleCrtcIndices() argument
205 return encoder_pool_[encoder_id]->GetPossibleCrtcIndices(possible_crtc_indices); in GetPossibleCrtcIndices()
236 int DRMEncoder::GetPossibleCrtcIndices(std::set<uint32_t> *possible_crtc_indices) { in GetPossibleCrtcIndices() argument
237 if (!possible_crtc_indices) { in GetPossibleCrtcIndices()
241 (*possible_crtc_indices).clear(); in GetPossibleCrtcIndices()
245 (*possible_crtc_indices).insert(i); in GetPossibleCrtcIndices()
H A Ddrm_manager.cpp248 std::set<uint32_t> possible_crtc_indices; in RegisterDisplay() local
249 ret = encoder_mgr_->GetPossibleCrtcIndices(token->encoder_id, &possible_crtc_indices); in RegisterDisplay()
256 ret = crtc_mgr_->Reserve(possible_crtc_indices, token); in RegisterDisplay()
290 std::set<uint32_t> possible_crtc_indices; in RegisterDisplay() local
291 ret = encoder_mgr_->GetPossibleCrtcIndices(token->encoder_id, &possible_crtc_indices); in RegisterDisplay()
300 ret = crtc_mgr_->Reserve(possible_crtc_indices, token); in RegisterDisplay()
H A Ddrm_encoder.h61 int GetPossibleCrtcIndices(std::set<uint32_t> *possible_crtc_indices);
91 int GetPossibleCrtcIndices(uint32_t encoder_id, std::set<uint32_t> *possible_crtc_indices);
H A Ddrm_crtc.h103 int Reserve(const std::set<uint32_t> &possible_crtc_indices, DRMDisplayToken *token);
H A Ddrm_crtc.cpp215 int DRMCrtcManager::Reserve(const std::set<uint32_t> &possible_crtc_indices, in Reserve() argument
219 if (possible_crtc_indices.find(item.second->GetIndex()) != possible_crtc_indices.end()) { in Reserve()