/ohos5.0/drivers/peripheral/display/composer/test/unittest/ |
H A D | hdi_composer_ut.cpp | 495 DestroyLayer(layer); 556 DestroyLayer(layer); 587 DestroyLayer(layer); 608 DestroyLayer(layer); 637 DestroyLayer(layer); 670 DestroyLayer(layer); 697 DestroyLayer(layer); 725 DestroyLayer(layer); 749 DestroyLayer(layer); 773 DestroyLayer(layer); [all …]
|
/ohos5.0/docs/zh-cn/device-dev/reference/hdi-apis/display/ |
H A D | interface_i_display_composer_v10.md | 35 | [DestroyLayer](#destroylayer) ([in] unsigned int devId, [in] unsigned int layerId) | 在指定的显示设备上打开图… 145 ### DestroyLayer() 148 IDisplayComposer::DestroyLayer ([in] unsigned int devId, [in] unsigned int layerId )
|
/ohos5.0/drivers/peripheral/display/composer/vdi_base/include/ |
H A D | hdi_display.h | 92 virtual int32_t DestroyLayer(uint32_t layerId);
|
H A D | display_composer_vdi_impl.h | 59 virtual int32_t DestroyLayer(uint32_t devId, uint32_t layerId) override;
|
/ohos5.0/drivers/peripheral/display/composer/vdi_base/src/ |
H A D | hdi_session.cpp | 263 static int32_t DestroyLayer(uint32_t devId, uint32_t layerId) in DestroyLayer() function 266 return HdiSession::GetInstance().CallDisplayFunction(devId, &HdiDisplay::DestroyLayer, layerId); in DestroyLayer()
|
H A D | display_composer_vdi_impl.cpp | 220 int32_t DisplayComposerVdiImpl::DestroyLayer(uint32_t devId, uint32_t layerId) in DestroyLayer() function in OHOS::HDI::DISPLAY::DisplayComposerVdiImpl 222 …int32_t ec = HdiSession::GetInstance().CallDisplayFunction(devId, &HdiDisplay::DestroyLayer, layer… in DestroyLayer()
|
H A D | hdi_display.cpp | 114 int32_t HdiDisplay::DestroyLayer(uint32_t layerId) in DestroyLayer() function in OHOS::HDI::DISPLAY::HdiDisplay
|
/ohos5.0/drivers/peripheral/display/composer/hdi_service/include/ |
H A D | idisplay_composer_vdi.h | 66 virtual int32_t DestroyLayer(uint32_t devId, uint32_t layerId) = 0;
|
H A D | display_composer_service.h | 63 int32_t DestroyLayer(uint32_t devId, uint32_t layerId) override;
|
/ohos5.0/drivers/peripheral/display/hal/default_standard/src/display_device/ |
H A D | display_composer_vdi_impl.cpp | 235 int32_t DisplayComposerVdiImpl::DestroyLayer(uint32_t devId, uint32_t layerId) in DestroyLayer() function in OHOS::HDI::DISPLAY::DisplayComposerVdiImpl 238 int32_t ec = composerModel_->CallDisplayFunction(devId, &HdiDisplay::DestroyLayer, layerId); in DestroyLayer()
|
H A D | display_composer_vdi_impl.h | 59 virtual int32_t DestroyLayer(uint32_t devId, uint32_t layerId) override;
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/display_composer_v1_0/cpp_target/display/composer/v1_0/ |
H A D | display_composer_service.h.txt | 60 int32_t DestroyLayer(uint32_t devId, uint32_t layerId) override;
|
H A D | display_composer_service.cpp.txt | 102 int32_t DisplayComposerService::DestroyLayer(uint32_t devId, uint32_t layerId)
|
H A D | idisplay_composer.h.txt | 131 virtual int32_t DestroyLayer(uint32_t devId, uint32_t layerId) = 0;
|
/ohos5.0/drivers/peripheral/display/composer/test/benchmark/ |
H A D | display_benchmark_test.cpp | 232 ret = g_composerDevice->DestroyLayer(g_displayIds[0], layerId); in BENCHMARK_F() 466 g_composerDevice->DestroyLayer(g_displayIds[0], layerId); in BENCHMARK_F()
|
/ohos5.0/drivers/interface/display/composer/v1_0/hdi_impl/ |
H A D | display_composer_hdi_impl.h | 351 virtual int32_t DestroyLayer(uint32_t devId, uint32_t layerId) override in DestroyLayer() function 354 return ToDispErrCode(hdi_->DestroyLayer(devId, layerId)); in DestroyLayer()
|
/ohos5.0/drivers/interface/display/composer/v1_0/ |
H A D | IDisplayComposer.idl | 211 * @see DestroyLayer 231 * @see DestroyLayer 235 DestroyLayer([in] unsigned int devId, [in] unsigned int layerId);
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/display_composer_v1_0/foo/display/composer/v1_0/ |
H A D | IDisplayComposer.idl | 211 * @see DestroyLayer 231 * @see DestroyLayer 235 DestroyLayer([in] unsigned int devId, [in] unsigned int layerId);
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/display_composer_v1_1/foo/display/composer/v1_0/ |
H A D | IDisplayComposer.idl | 211 * @see DestroyLayer 231 * @see DestroyLayer 235 DestroyLayer([in] unsigned int devId, [in] unsigned int layerId);
|
/ohos5.0/drivers/interface/display/composer/v1_0/include/ |
H A D | idisplay_composer_interface.h | 560 virtual int32_t DestroyLayer(uint32_t devId, uint32_t layerId) = 0;
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/display_composer_v1_1/cpp_target/display/composer/v1_1/ |
H A D | display_composer_service.h.txt | 84 int32_t DestroyLayer(uint32_t devId, uint32_t layerId) override;
|
H A D | display_composer_service.cpp.txt | 157 int32_t DisplayComposerService::DestroyLayer(uint32_t devId, uint32_t layerId)
|
/ohos5.0/docs/zh-cn/device-dev/driver/ |
H A D | driver-peripherals-display-vdi-des.md | 68 | 关闭图层 | int32_t DestroyLayer(uint32_t devId, uint32_t layerId) | 121 virtual int32_t DestroyLayer(uint32_t devId, uint32_t layerId) override;
|
/ohos5.0/drivers/peripheral/display/composer/test/common/ |
H A D | hdi_test_display.cpp | 234 device_->DestroyLayer(id_, layerId); in Clear()
|
/ohos5.0/drivers/peripheral/display/composer/hdi_service/src/ |
H A D | display_composer_service.cpp | 514 int32_t DisplayComposerService::DestroyLayer(uint32_t devId, uint32_t layerId) in DestroyLayer() function in OHOS::HDI::Display::Composer::DisplayComposerService 518 int32_t ret = vdiImpl_->DestroyLayer(devId, layerId); in DestroyLayer()
|