Home
last modified time | relevance | path

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

/hardware/qcom/sm7250/display/sde-drm/
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()
Ddrm_manager.cpp255 std::set<uint32_t> possible_crtc_indices; in RegisterDisplay() local
256 ret = encoder_mgr_->GetPossibleCrtcIndices(token->encoder_id, &possible_crtc_indices); in RegisterDisplay()
263 ret = crtc_mgr_->Reserve(possible_crtc_indices, token); in RegisterDisplay()
297 std::set<uint32_t> possible_crtc_indices; in RegisterDisplay() local
298 ret = encoder_mgr_->GetPossibleCrtcIndices(token->encoder_id, &possible_crtc_indices); in RegisterDisplay()
307 ret = crtc_mgr_->Reserve(possible_crtc_indices, token); in RegisterDisplay()
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);
Ddrm_crtc.h103 int Reserve(const std::set<uint32_t> &possible_crtc_indices, DRMDisplayToken *token);
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()