/drivers/peripheral/display/hal/default_standard/src/display_layer_video/ |
H A D | display_layer_video.cpp | 50 static int32_t CreateLayer(uint32_t devId, const LayerInfo *layerInfo, uint32_t *layerId)
in CreateLayer() function 58 return g_layerService->CreateLayer(devId, info, *layerId);
in CreateLayer() 113 lFunc->CreateLayer = CreateLayer;
in LayerInitialize()
|
/drivers/peripheral/display/hal/default_standard/src/display_device/core/ |
H A D | hdi_session.cpp | 232 static int32_t CreateLayer(uint32_t devId, const LayerInfo *layerInfo, uint32_t *layerId)
in CreateLayer() function 236 return HdiSession::GetInstance().CallDisplayFunction(devId, &HdiDisplay::CreateLayer, layerInfo, layerId);
in CreateLayer() 373 lFuncs->CreateLayer = CreateLayer;
in LayerInitialize()
|
H A D | hdi_display.h | 86 virtual int32_t CreateLayer(const LayerInfo *layerInfo, uint32_t *layerId);
|
H A D | hdi_display.cpp | 90 int32_t HdiDisplay::CreateLayer(const LayerInfo *layerInfo, uint32_t *layerId)
in CreateLayer() function in OHOS::HDI::DISPLAY::HdiDisplay
|
/drivers/peripheral/display/composer/vdi_base/include/ |
H A D | hdi_display.h | 91 virtual int32_t CreateLayer(const LayerInfo *layerInfo, uint32_t *layerId);
|
H A D | display_composer_vdi_impl.h | 58 virtual int32_t CreateLayer(uint32_t devId, const LayerInfo& layerInfo, uint32_t& layerId) override;
|
/drivers/peripheral/display/hal/default/ |
H A D | display_layer.c | 272 static int32_t CreateLayer(uint32_t devId, const LayerInfo *layerInfo, uint32_t *layerId) in CreateLayer() function 448 lFuncs->CreateLayer = CreateLayer; in LayerInitialize()
|
/drivers/peripheral/display/hal/default_standard/src/display_device/composer/ |
H A D | hdi_video_composition.cpp | 56 int ret = layerFuncs_->CreateLayer(0, &layerInfo, &voLayerId);
in CreateVideoLayerForHdiLayer()
|
/drivers/peripheral/display/composer/hdi_service/include/ |
H A D | display_composer_service.h | 62 int32_t CreateLayer(uint32_t devId, const LayerInfo& layerInfo, uint32_t cacheCount, uint32_t& layerId) override;
|
H A D | idisplay_composer_vdi.h | 65 virtual int32_t CreateLayer(uint32_t devId, const LayerInfo& layerInfo, uint32_t& layerId) = 0;
|
/drivers/peripheral/display/composer/vdi_base/src/ |
H A D | hdi_display.cpp | 89 int32_t HdiDisplay::CreateLayer(const LayerInfo *layerInfo, uint32_t *layerId) in CreateLayer() function in OHOS::HDI::DISPLAY::HdiDisplay
|
H A D | display_composer_vdi_impl.cpp | 213 int32_t DisplayComposerVdiImpl::CreateLayer(uint32_t devId, const LayerInfo& layerInfo, uint32_t& layerId) in CreateLayer() function in OHOS::HDI::DISPLAY::DisplayComposerVdiImpl 215 int32_t ec = HdiSession::GetInstance().CallDisplayFunction(devId, &HdiDisplay::CreateLayer, &layerInfo, &layerId); in CreateLayer()
|
H A D | hdi_session.cpp | 256 static int32_t CreateLayer(uint32_t devId, const LayerInfo *layerInfo, uint32_t *layerId) in CreateLayer() function 260 return HdiSession::GetInstance().CallDisplayFunction(devId, &HdiDisplay::CreateLayer, layerInfo, layerId); in CreateLayer()
|
/drivers/peripheral/display/hal/default_standard/src/display_device/ |
H A D | display_composer_vdi_impl.h | 58 virtual int32_t CreateLayer(uint32_t devId, const LayerInfo& layerInfo, uint32_t& layerId) override;
|
H A D | display_composer_vdi_impl.cpp | 227 int32_t DisplayComposerVdiImpl::CreateLayer(uint32_t devId, const LayerInfo& layerInfo, uint32_t& layerId) in CreateLayer() function in OHOS::HDI::DISPLAY::DisplayComposerVdiImpl 230 int32_t ec = composerModel_->CallDisplayFunction(devId, &HdiDisplay::CreateLayer, &layerInfo, &layerId); in CreateLayer()
|
/drivers/peripheral/display/hdi_service/device/include/server/ |
H A D | display_device_stub.h | 72 int32_t CreateLayer(MessageParcel *data, MessageParcel *reply);
|
/drivers/peripheral/display/interfaces/include/ |
H A D | display_layer.h | 112 int32_t (*CreateLayer)(uint32_t devId, const LayerInfo *layerInfo, uint32_t *layerId); member
|
/drivers/peripheral/display/hdi_service/device/src/server/ |
H A D | display_device_service.cpp | 208 int32_t DisplayDeviceService::CreateLayer(uint32_t devId, const LayerInfo &layerInfo, uint32_t &layerId) in CreateLayer() function in OHOS::Display::Device::Server::DisplayDeviceService 210 return displayLayer_->CreateLayer(devId, &layerInfo, &layerId); in CreateLayer()
|
/drivers/peripheral/display/test/unittest/lite/ |
H A D | display_test.c | 204 if (g_displayTest.layerFuncs->CreateLayer != NULL) { in CreateLayerTest() 205 ret = g_displayTest.layerFuncs->CreateLayer(g_displayTest.devId, &layInfo, &g_displayTest.layerId); in CreateLayerTest() 207 HDF_LOGE("%s: CreateLayer fail", __func__); in CreateLayerTest()
|
/drivers/interface/display/composer/v1_0/hdi_impl/ |
H A D | display_composer_hdi_impl.h | 344 virtual int32_t CreateLayer(uint32_t devId, const LayerInfo& layerInfo, uint32_t cacheCount, 348 return ToDispErrCode(hdi_->CreateLayer(devId, layerInfo, cacheCount, layerId));
|
/drivers/peripheral/display/composer/test/benchmark/ |
H A D | display_benchmark_test.cpp | 221 * @tc.desc: Benchmarktest for interface CreateLayer And DestroyLayer. 230 ret = g_composerDevice->CreateLayer(g_displayIds[0], layerInfo, bufferCount, layerId); in BENCHMARK_F() 461 ret = g_composerDevice->CreateLayer(g_displayIds[0], layerInfo, bufferCount, layerId); in BENCHMARK_F()
|
/drivers/interface/display/composer/v1_0/include/ |
H A D | idisplay_composer_interface.h | 544 virtual int32_t CreateLayer(uint32_t devId, const LayerInfo& layerInfo, uint32_t cacheCount, uint32_t& layerId) = 0;
|
/drivers/peripheral/display/composer/test/common/ |
H A D | hdi_test_display.cpp | 94 int ret = device_->CreateLayer(id_, info, HdiTestLayer::MAX_BUFFER_COUNT, layerId); in CreateHdiTestLayer() 95 DISPLAY_TEST_LOGD("CreateLayer layerId %{public}u", layerId); in CreateHdiTestLayer()
|
/drivers/peripheral/display/hdi_service/device/include/interfaces/ |
H A D | idisplay_device.h | 76 virtual int32_t CreateLayer(uint32_t devId, const LayerInfo &layerInfo, uint32_t &layerId) = 0;
|
/drivers/peripheral/display/hdi_service/device/include/proxy/ |
H A D | display_device_proxy.h | 70 int32_t CreateLayer(uint32_t devId, const LayerInfo &layerInfo, uint32_t &layerId) override;
|