Home
last modified time | relevance | path

Searched refs:SetScreenOverlayResolution (Results 1 – 13 of 13) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/test/systemtest/
H A Dhdiscreen_test.cpp45 … EXPECT_CALL(*mockDevice_, SetScreenOverlayResolution(_, _, _)).WillRepeatedly(testing::Return(0)); in SetUpTestCase()
78 ASSERT_EQ(HdiScreenSysTest::hdiScreen_->SetScreenOverlayResolution(width, height), 0);
H A Dmock_hdi_device_systest.h45 MOCK_METHOD3(SetScreenOverlayResolution, int32_t(uint32_t, uint32_t, uint32_t));
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/test/unittest/
H A Dhdiscreen_test.cpp46 … EXPECT_CALL(*mockDevice_, SetScreenOverlayResolution(_, _, _)).WillRepeatedly(testing::Return(0)); in SetUpTestCase()
88 ASSERT_EQ(hdiScreen_->SetScreenOverlayResolution(width, height), GRAPHIC_DISPLAY_NULL_PTR);
207 ASSERT_EQ(HdiScreenTest::hdiScreen_->SetScreenOverlayResolution(width, height), 0);
H A Dmock_hdi_device.h45 MOCK_METHOD3(SetScreenOverlayResolution, int32_t(uint32_t, uint32_t, uint32_t));
H A Dhdidevice_test.cpp70 …ASSERT_EQ(HdiDeviceTest::hdiDevice_->SetScreenOverlayResolution(screenId, width, height), GRAPHIC_…
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/src/
H A Dhdi_screen.cpp159 int32_t HdiScreen::SetScreenOverlayResolution(uint32_t width, uint32_t height) const in SetScreenOverlayResolution() function in OHOS::Rosen::HdiScreen
162 return device_->SetScreenOverlayResolution(screenId_, width, height); in SetScreenOverlayResolution()
H A Dhdi_device_impl.cpp206 int32_t HdiDeviceImpl::SetScreenOverlayResolution(uint32_t screenId, uint32_t width, uint32_t heigh… in SetScreenOverlayResolution() function in OHOS::Rosen::HdiDeviceImpl
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/include/
H A Dhdi_screen.h44 int32_t SetScreenOverlayResolution(uint32_t width, uint32_t height) const;
H A Dhdi_device.h44 …virtual int32_t SetScreenOverlayResolution(uint32_t screenId, uint32_t width, uint32_t height) = 0;
H A Dhdi_device_impl.h42 int32_t SetScreenOverlayResolution(uint32_t screenId, uint32_t width, uint32_t height) override;
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/test/fuzztest/hdiscreen_fuzzer/
H A Dhdiscreen_fuzzer.cpp123 g_hdiScreen->SetScreenOverlayResolution(width, height); in DoSomethingInterestingWithMyAPI()
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service/unittest/pipeline/mock/
H A Dmock_hdi_device.h43 MOCK_METHOD3(SetScreenOverlayResolution, int32_t(uint32_t, uint32_t, uint32_t));
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service/core/screen_manager/
H A Drs_screen.cpp319 if (hdiScreen_->SetScreenOverlayResolution(width, height) < 0) { in SetRogResolution()