Home
last modified time | relevance | path

Searched refs:SetScreenGamutMap (Results 1 – 25 of 71) sorted by relevance

123

/ohos5.0/foundation/window/window_manager/test/systemtest/dms/
H A Dscreen_gamut_test.cpp219 ret = defaultScreen_->SetScreenGamutMap(gamutMaps[i]);
229 ret = defaultScreen_->SetScreenGamutMap(gamutMapBackup); // restore
250 ret = defaultScreen_->SetScreenGamutMap(gamutMap);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/test/unittest/
H A Dhdiscreen_test.cpp54 EXPECT_CALL(*mockDevice_, SetScreenGamutMap(_, _)).WillRepeatedly(testing::Return(0)); in SetUpTestCase()
103 ASSERT_EQ(hdiScreen_->SetScreenGamutMap(gamutMap), GRAPHIC_DISPLAY_NULL_PTR);
348 ASSERT_EQ(HdiScreenTest::hdiScreen_->SetScreenGamutMap(gamutMap), 0);
H A Dmock_hdi_device.h59 MOCK_METHOD2(SetScreenGamutMap, int32_t(uint32_t, GraphicGamutMap));
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/src/
H A Dhdi_screen.cpp219 int32_t HdiScreen::SetScreenGamutMap(GraphicGamutMap gamutMap) const in SetScreenGamutMap() function in OHOS::Rosen::HdiScreen
222 return device_->SetScreenGamutMap(screenId_, gamutMap); in SetScreenGamutMap()
/ohos5.0/foundation/window/window_manager/dm/src/
H A Dscreen.cpp149 DMError Screen::SetScreenGamutMap(ScreenGamutMap gamutMap) in SetScreenGamutMap() function in OHOS::Rosen::Screen
151 return SingletonContainer::Get<ScreenManagerAdapter>().SetScreenGamutMap(GetId(), gamutMap); in SetScreenGamutMap()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/include/
H A Dhdi_screen.h54 int32_t SetScreenGamutMap(GraphicGamutMap gamutMap) const;
/ohos5.0/foundation/window/window_manager/interfaces/innerkits/dm/
H A Dscreen.h215 DMError SetScreenGamutMap(ScreenGamutMap gamutMap);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/test/fuzztest/hdiscreen_fuzzer/
H A Dhdiscreen_fuzzer.cpp73 g_hdiScreen->SetScreenGamutMap(gamutMap); in HdiScreenFuzzTest2()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service/core/screen_manager/
H A Drs_screen.h86 virtual int32_t SetScreenGamutMap(ScreenGamutMap mode) = 0;
177 int32_t SetScreenGamutMap(ScreenGamutMap mode) override;
H A Drs_screen_manager.h172 virtual int32_t SetScreenGamutMap(ScreenId id, ScreenGamutMap mode) = 0;
382 int32_t SetScreenGamutMap(ScreenId id, ScreenGamutMap mode) override;
/ohos5.0/foundation/window/window_manager/dmserver/include/
H A Dabstract_screen.h67 DMError SetScreenGamutMap(ScreenGamutMap gamutMap);
H A Ddisplay_manager_proxy.h55 DMError SetScreenGamutMap(ScreenId screenId, ScreenGamutMap gamutMap) override;
H A Ddisplay_manager_service.h73 DMError SetScreenGamutMap(ScreenId screenId, ScreenGamutMap gamutMap) override;
H A Dabstract_screen_controller.h85 DMError SetScreenGamutMap(ScreenId screenId, ScreenGamutMap gamutMap);
/ohos5.0/foundation/window/window_manager/test/common/mock/
H A Dmock_display_manager_adapter.h76 MOCK_METHOD2(SetScreenGamutMap, DMError(ScreenId screenId, ScreenGamutMap gamutMap));
/ohos5.0/foundation/window/window_manager/dm/test/unittest/
H A Dscreen_test.cpp190 EXPECT_CALL(m->Mock(), SetScreenGamutMap(_, _)).Times(1).WillOnce(Return(DMError::DM_OK));
192 auto res = screen_->SetScreenGamutMap(gamutMap);
/ohos5.0/foundation/window/window_manager/dmserver/test/unittest/
H A Ddisplay_manager_service_test.cpp292 … ASSERT_EQ(DMError::DM_ERROR_INVALID_PARAM, dms_->SetScreenGamutMap(SCREEN_ID_INVALID, gamutMap));
293 ASSERT_EQ(DMError::DM_ERROR_INVALID_PARAM, dms_->SetScreenGamutMap(0, gamutMap));
H A Dabstract_screen_test.cpp270 HWTEST_F(AbstractScreenTest, SetScreenGamutMap, Function | SmallTest | Level3)
273 DMError result = absScreen_->SetScreenGamutMap(gamutMap);
277 result = absScreen_->SetScreenGamutMap(gamutMap);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/test/systemtest/
H A Dmock_hdi_device_systest.h59 MOCK_METHOD2(SetScreenGamutMap, int32_t(uint32_t, GraphicGamutMap));
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service/unittest/pipeline/mock/
H A Dmock_hdi_device.h57 MOCK_METHOD2(SetScreenGamutMap, int32_t(uint32_t, GraphicGamutMap));
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service/unittest/screen_manager/
H A Drs_screen_test.cpp319 auto result1 = virtualScreen->SetScreenGamutMap(map1);
338 auto result1 = rsScreen->SetScreenGamutMap(map1);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/test/fuzztest/hdidevice_fuzzer/
H A Dhdidevice_fuzzer.cpp173 device->SetScreenGamutMap(screenId, gamutMap); in DoSomethingInterestingWithMyAPI()
/ohos5.0/foundation/window/window_manager/test/fuzztest/dms/screen_fuzzer/
H A Dscreen_fuzzer.cpp147 screen->SetScreenGamutMap(static_cast<ScreenGamutMap>(gamutMap)); in ColorGamutsFuzzTest()
/ohos5.0/foundation/window/window_manager/dmserver/src/
H A Dabstract_screen.cpp334 DMError AbstractScreen::SetScreenGamutMap(ScreenGamutMap gamutMap) in SetScreenGamutMap() function in OHOS::Rosen::AbstractScreen
339 auto ret = RSInterfaces::GetInstance().SetScreenGamutMap(rsId_, gamutMap); in SetScreenGamutMap()
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_client/fuzztest/rsinterfaces_fuzzer/
H A Drsinterfaces_fuzzer.cpp97 rsInterfaces.SetScreenGamutMap(static_cast<ScreenId>(id), mapMode); in RSPhysicalScreenFuzzTest()

123