/ohos5.0/foundation/window/window_manager/test/systemtest/dms/ |
H A D | screen_gamut_test.cpp | 219 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 D | hdiscreen_test.cpp | 54 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 D | mock_hdi_device.h | 59 MOCK_METHOD2(SetScreenGamutMap, int32_t(uint32_t, GraphicGamutMap));
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/src/ |
H A D | hdi_screen.cpp | 219 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 D | screen.cpp | 149 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 D | hdi_screen.h | 54 int32_t SetScreenGamutMap(GraphicGamutMap gamutMap) const;
|
/ohos5.0/foundation/window/window_manager/interfaces/innerkits/dm/ |
H A D | screen.h | 215 DMError SetScreenGamutMap(ScreenGamutMap gamutMap);
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/test/fuzztest/hdiscreen_fuzzer/ |
H A D | hdiscreen_fuzzer.cpp | 73 g_hdiScreen->SetScreenGamutMap(gamutMap); in HdiScreenFuzzTest2()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service/core/screen_manager/ |
H A D | rs_screen.h | 86 virtual int32_t SetScreenGamutMap(ScreenGamutMap mode) = 0; 177 int32_t SetScreenGamutMap(ScreenGamutMap mode) override;
|
H A D | rs_screen_manager.h | 172 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 D | abstract_screen.h | 67 DMError SetScreenGamutMap(ScreenGamutMap gamutMap);
|
H A D | display_manager_proxy.h | 55 DMError SetScreenGamutMap(ScreenId screenId, ScreenGamutMap gamutMap) override;
|
H A D | display_manager_service.h | 73 DMError SetScreenGamutMap(ScreenId screenId, ScreenGamutMap gamutMap) override;
|
H A D | abstract_screen_controller.h | 85 DMError SetScreenGamutMap(ScreenId screenId, ScreenGamutMap gamutMap);
|
/ohos5.0/foundation/window/window_manager/test/common/mock/ |
H A D | mock_display_manager_adapter.h | 76 MOCK_METHOD2(SetScreenGamutMap, DMError(ScreenId screenId, ScreenGamutMap gamutMap));
|
/ohos5.0/foundation/window/window_manager/dm/test/unittest/ |
H A D | screen_test.cpp | 190 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 D | display_manager_service_test.cpp | 292 … 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 D | abstract_screen_test.cpp | 270 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 D | mock_hdi_device_systest.h | 59 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 D | mock_hdi_device.h | 57 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 D | rs_screen_test.cpp | 319 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 D | hdidevice_fuzzer.cpp | 173 device->SetScreenGamutMap(screenId, gamutMap); in DoSomethingInterestingWithMyAPI()
|
/ohos5.0/foundation/window/window_manager/test/fuzztest/dms/screen_fuzzer/ |
H A D | screen_fuzzer.cpp | 147 screen->SetScreenGamutMap(static_cast<ScreenGamutMap>(gamutMap)); in ColorGamutsFuzzTest()
|
/ohos5.0/foundation/window/window_manager/dmserver/src/ |
H A D | abstract_screen.cpp | 334 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 D | rsinterfaces_fuzzer.cpp | 97 rsInterfaces.SetScreenGamutMap(static_cast<ScreenId>(id), mapMode); in RSPhysicalScreenFuzzTest()
|