Home | History | Annotate | Download | only in DisplayHardware

Lines Matching defs:Config

252 Display::Config::Config(Display& display, hwc2_config_t id)
261 Display::Config::Builder::Builder(Display& display, hwc2_config_t id)
262 : mConfig(new Config(display, id)) {}
264 float Display::Config::Builder::getDefaultDensity() {
316 std::shared_ptr<const Display::Config>* outConfig) const
324 ALOGE("Unable to get active config for mId:[%" PRIu64 "]", mId);
332 ALOGE("[%" PRIu64 "] getActiveConfig returned unknown config %u", mId,
349 ALOGE("Unable to get active config for mId:[%" PRIu64 "]", mId);
358 ALOGE("[%" PRIu64 "] getActiveConfig returned unknown config %u", mId, configId);
454 std::vector<std::shared_ptr<const Display::Config>> Display::getConfigs() const
456 std::vector<std::shared_ptr<const Config>> configs;
584 Error Display::setActiveConfig(const std::shared_ptr<const Config>& config)
586 if (config->getDisplayId() != mId) {
587 ALOGE("setActiveConfig received config %u for the wrong display %"
588 PRIu64 " (expected %" PRIu64 ")", config->getId(),
589 config->getDisplayId(), mId);
592 auto intError = mComposer.setActiveConfig(mId, config->getId());
715 auto config = Config::Builder(*this, configId)
722 mConfigs.emplace(configId, std::move(config));
729 std::vector<Hwc2::Config> configIds;