Searched refs:possible_crtc_indices (Results 1 – 5 of 5) sorted by relevance
204 std::set<uint32_t> *possible_crtc_indices) { in GetPossibleCrtcIndices() argument205 return encoder_pool_[encoder_id]->GetPossibleCrtcIndices(possible_crtc_indices); in GetPossibleCrtcIndices()236 int DRMEncoder::GetPossibleCrtcIndices(std::set<uint32_t> *possible_crtc_indices) { in GetPossibleCrtcIndices() argument237 if (!possible_crtc_indices) { in GetPossibleCrtcIndices()241 (*possible_crtc_indices).clear(); in GetPossibleCrtcIndices()245 (*possible_crtc_indices).insert(i); in GetPossibleCrtcIndices()
255 std::set<uint32_t> possible_crtc_indices; in RegisterDisplay() local256 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() local298 ret = encoder_mgr_->GetPossibleCrtcIndices(token->encoder_id, &possible_crtc_indices); in RegisterDisplay()307 ret = crtc_mgr_->Reserve(possible_crtc_indices, token); in RegisterDisplay()
61 int GetPossibleCrtcIndices(std::set<uint32_t> *possible_crtc_indices);91 int GetPossibleCrtcIndices(uint32_t encoder_id, std::set<uint32_t> *possible_crtc_indices);
103 int Reserve(const std::set<uint32_t> &possible_crtc_indices, DRMDisplayToken *token);
215 int DRMCrtcManager::Reserve(const std::set<uint32_t> &possible_crtc_indices, in Reserve() argument219 if (possible_crtc_indices.find(item.second->GetIndex()) != possible_crtc_indices.end()) { in Reserve()