/drivers/hdf_core/adapter/khdf/liteos/model/display/ |
H A D | Makefile | 35 $(LITEOSTOPDIR)/../../drivers/hdf_core/framework/model/display/driver \ 36 $(LITEOSTOPDIR)/../../drivers/hdf_core/framework/model/display/driver/backlight 39 LOCAL_SRCS += $(LITEOSTOPDIR)/../../drivers/hdf_core/framework/model/display/driver/hdf_disp.c \ 40 $(LITEOSTOPDIR)/../../drivers/hdf_core/framework/model/display/driver/backlight/hdf_bl.c 43 LOCAL_SRCS += $(LITEOSTOPDIR)/../../drivers/hdf_core/framework/model/display/driver/backlight/pwm_bl.c 47 LOCAL_SRCS += $(LITEOSTOPDIR)/../../drivers/hdf_core/framework/model/display/driver/adapter_soc/hi35xx_disp.c 51 LOCAL_SRCS += $(LITEOSTOPDIR)/../../drivers/hdf_core/framework/model/display/driver/lcdkit/lite_lcdkit.c 52 LOCAL_SRCS += $(LITEOSTOPDIR)/../../drivers/hdf_core/framework/model/display/driver/lcdkit/lcdkit_parse_config.c 56 LOCAL_SRCS += $(LITEOSTOPDIR)/../../drivers/hdf_core/framework/model/display/driver/panel/mipi_icn9700.c 64 LOCAL_SRCS += $(LITEOSTOPDIR)/../../drivers/hdf_core/framework/model/display/drive [all...] |
/drivers/peripheral/display/composer/test/common/ |
H A D | hdi_test_device.cpp | 61 DISPLAY_TEST_CHK_RETURN((iter == displays_.end()), nullptr, DISPLAY_TEST_LOGD("can not find the display %{public}u", in GetDisplayFromId() 69 std::shared_ptr<HdiTestDisplay> display = GetDisplayFromId(id); in FindDisplayOrCreate() local 70 if (display == nullptr) { in FindDisplayOrCreate() 71 DISPLAY_TEST_LOGD("the display not find will creat a display"); in FindDisplayOrCreate() 73 display = std::make_shared<HdiTestDisplay>(id, displayDevice_); in FindDisplayOrCreate() 74 ret = display->Init(); in FindDisplayOrCreate() 75 DISPLAY_TEST_CHK_RETURN((ret != DISPLAY_SUCCESS), nullptr, DISPLAY_TEST_LOGE("can not init the display")); in FindDisplayOrCreate() 76 displays_.emplace(id, display); in FindDisplayOrCreate() 78 return display; in FindDisplayOrCreate() [all...] |
/drivers/peripheral/display/hal/default_standard/src/display_device/fbdev/ |
H A D | fb_device.cpp | 33 DISPLAY_LOGE("can not get display adapter the fbdevice need it");
in Create() 71 std::shared_ptr<HdiDisplay> display = std::make_shared<FbDisplay>(fds);
in Init() local 72 int ret = display->Init();
in Init() 73 DISPLAY_CHK_RETURN((ret != DISPLAY_SUCCESS), DISPLAY_FAILURE, DISPLAY_LOGE("display init failed"));
in Init() 74 displays_.emplace(display->GetId(), std::move(display));
in Init()
|
/drivers/peripheral/display/composer/vdi_base/include/ |
H A D | hdi_session.h | 43 DISPLAY_LOGE("can not find display %{public}d", devId)); in CallDisplayFunction() 44 auto display = iter->second.get(); in CallDisplayFunction() local 45 return (display->*member)(std::forward<Args>(args)...); in CallDisplayFunction() 55 DISPLAY_LOGE("can not find display %{public}d", devId)); in CallLayerFunction() 56 auto display = iter->second.get(); in CallLayerFunction() local 57 auto layer = display->GetHdiLayer(layerId); in CallLayerFunction()
|
/drivers/peripheral/display/hal/default_standard/src/display_device/core/ |
H A D | hdi_session.h | 40 DISPLAY_LOGE("can not find display %{public}d", devId));
in CallDisplayFunction() 41 auto display = iter->second.get();
in CallDisplayFunction() local 42 return (display->*member)(std::forward<Args>(args)...);
in CallDisplayFunction() 52 DISPLAY_LOGE("can not find display %{public}d", devId));
in CallLayerFunction() 53 auto display = iter->second.get();
in CallLayerFunction() local 54 auto layer = display->GetHdiLayer(layerId);
in CallLayerFunction()
|
H A D | hdi_session.cpp | 51 auto display = displayMap.second;
in RegHotPlugCallback() local 52 if (display->IsConnected()) {
in RegHotPlugCallback() 53 DoHotPlugCallback(display->GetId(), true);
in RegHotPlugCallback()
|
/drivers/peripheral/display/composer/test/moduletest/ |
H A D | hdi_device_test.cpp | 39 // one layer display test 237 std::shared_ptr<HdiTestDisplay> display = HdiTestDevice::GetInstance().GetFirstDisplay(); in CreateTestLayer() local 238 DISPLAY_TEST_CHK_RETURN((display == nullptr), nullptr, DISPLAY_TEST_LOGE("can not get display")); in CreateTestLayer() 240 std::shared_ptr<HdiTestLayer> layer = display->CreateHdiTestLayer(setting.bufferSize.w, setting.bufferSize.h); in CreateTestLayer() 268 std::shared_ptr<HdiTestDisplay> display = HdiTestDevice::GetInstance().GetFirstDisplay(); in PrepareAndPrensent() local 269 DISPLAY_TEST_CHK_RETURN((display == nullptr), DISPLAY_FAILURE, DISPLAY_TEST_LOGE("can not get display")); in PrepareAndPrensent() 271 ret = display->PrepareDisplayLayers(); in PrepareAndPrensent() 275 ret = display in PrepareAndPrensent() 352 std::shared_ptr<HdiTestDisplay> display = HdiTestDevice::GetInstance().GetFirstDisplay(); PrepareAndCommit() local 546 std::shared_ptr<HdiTestDisplay> display = HdiTestDevice::GetInstance().GetFirstDisplay(); TEST_F() local [all...] |
/drivers/hdf_core/adapter/khdf/linux/model/display/ |
H A D | Makefile | 15 DISPLAY_ROOT_DIR = ../../../../../framework/model/display/driver 50 -I$(srctree)/drivers/hdf/framework/model/display/driver \ 51 -I$(srctree)/drivers/hdf/framework/model/display/driver/adapter_soc \ 53 -I$(srctree)/drivers/hdf/framework/model/display/driver/backlight \
|
/drivers/peripheral/display/composer/vdi_base/src/ |
H A D | hdi_session.cpp | 45 /* Register the connectors instead of display device. in Init() 46 * There are several connectors in one display device in Init() 49 for (auto display : displays) { in Init() 50 mHdiDisplays[display.first] = display.second; in Init() 61 auto display = displayMap.second; in HandleHotplug() local 62 auto isSuccess = device->HandleHotplug(display->GetId(), plugIn); in HandleHotplug() 64 DoHotPlugCallback(display->GetId(), plugIn); in HandleHotplug() 75 auto display = displayMap.second; in RegHotPlugCallback() local 76 if (display in RegHotPlugCallback() [all...] |
H A D | drm_device.cpp | 348 // create the display in DiscoveryDisplay() 349 std::shared_ptr<HdiDisplay> display = std::make_shared<DrmDisplay>(connector, crtc, mInstance); in DiscoveryDisplay() local 351 display->Init(); in DiscoveryDisplay() 352 dispId = display->GetId(); in DiscoveryDisplay() 354 mDisplays.emplace(dispId, std::move(display)); in DiscoveryDisplay() 357 DISPLAY_LOGD("find display size %{public}zd", mDisplays.size()); in DiscoveryDisplay()
|
/drivers/peripheral/display/composer/test/unittest/ |
H A D | hdi_composer_ut.cpp | 66 std::shared_ptr<HdiTestDisplay> display = HdiTestDevice::GetInstance().GetFirstDisplay(); in CreateTestLayer() local 67 DISPLAY_TEST_CHK_RETURN((display == nullptr), nullptr, DISPLAY_TEST_LOGE("can not get display")); in CreateTestLayer() 69 std::shared_ptr<HdiTestLayer> layer = display->CreateHdiTestLayer(setting.bufferSize.w, setting.bufferSize.h); in CreateTestLayer() 97 std::shared_ptr<HdiTestDisplay> display = HdiTestDevice::GetInstance().GetFirstDisplay(); in PrepareAndCommit() local 98 DISPLAY_TEST_CHK_RETURN((display == nullptr), DISPLAY_FAILURE, DISPLAY_TEST_LOGE("can not get display")); in PrepareAndCommit() 100 ret = display->PrepareDisplayLayers(); // 确定顶压策略(是否走GPU合成)、刷新layer列表 in PrepareAndCommit() 104 ret = display->Commit(); // 送显 in PrepareAndCommit() 136 DISPLAY_TEST_LOGD("display rec in AdjustLayerSettings() 855 std::shared_ptr<HdiTestDisplay> display = HdiTestDevice::GetInstance().GetFirstDisplay(); HWTEST_F() local [all...] |
/drivers/hdf_core/adapter/khdf/linux/ |
H A D | Makefile | 46 obj-$(CONFIG_DRIVERS_HDF_DISP) += model/display/
|
/drivers/peripheral/display/hal/default_standard/src/display_device/drm/ |
H A D | drm_device.cpp | 308 // create the display
in DiscoveryDisplay() 309 std::shared_ptr<HdiDisplay> display = std::make_shared<DrmDisplay>(connector, crtc, mInstance);
in DiscoveryDisplay() local 311 display->Init();
in DiscoveryDisplay() 312 mDisplays.emplace(display->GetId(), std::move(display));
in DiscoveryDisplay() 314 DISPLAY_LOGD("find display size %{public}zd", mDisplays.size());
in DiscoveryDisplay()
|
/drivers/peripheral/display/composer/test/benchmark/ |
H A D | display_benchmark_test.cpp | 712 auto display = HdiTestDevice::GetInstance().GetFirstDisplay(); in main() local 713 if (display != nullptr) { in main() 715 display->SetDisplayVsyncEnabled(false); in main()
|
/drivers/hdf_core/framework/tools/hcs-view/hcsWebView/src/ |
H A D | AttrEditor.js | 327 validatorLabel.style.display = 'none';
332 validatorLabel.style.display = '';
|
/drivers/hdf_core/adapter/khdf/liteos/ |
H A D | hdf_lite.mk | 89 LIB_SUBDIRS += $(LITEOS_DRIVERS_HDF)/model/display
|