/foundation/window/window_manager/dm/src/ |
H A D | screen.cpp | 179 DMError Screen::SetScreenHDRFormat(int32_t modeIdx)
in SetScreenHDRFormat() function in OHOS::Rosen::Screen 181 return SingletonContainer::Get<ScreenManagerAdapter>().SetScreenHDRFormat(GetId(), modeIdx);
in SetScreenHDRFormat()
|
H A D | display_manager_adapter.cpp | 148 DMError ScreenManagerAdapter::SetScreenHDRFormat(ScreenId screenId, int32_t modeIdx)
in SetScreenHDRFormat() function in OHOS::Rosen::ScreenManagerAdapter 152 WLOGFI("ScreenManagerAdapter::SetScreenHDRFormat");
in SetScreenHDRFormat() 153 return displayManagerServiceProxy_->SetScreenHDRFormat(screenId, modeIdx);
in SetScreenHDRFormat()
|
/foundation/window/window_manager/dm/test/unittest/ |
H A D | screen_test.cpp | 331 * @tc.name: SetScreenHDRFormat
332 * @tc.desc: SetScreenHDRFormat
335 HWTEST_F(ScreenTest, SetScreenHDRFormat, Function | SmallTest | Level2)
in HWTEST_F() 338 EXPECT_CALL(m->Mock(), SetScreenHDRFormat(_, _)).Times(1).WillOnce(Return(DMError::DM_OK));
in HWTEST_F() 339 auto res = screen_->SetScreenHDRFormat(0);
in HWTEST_F()
|
H A D | display_manager_adapter_test.cpp | 358 * @tc.name: SetScreenHDRFormat
362 HWTEST_F(DisplayManagerAdapterTest, SetScreenHDRFormat, Function | SmallTest | Level2)
in HWTEST_F() 364 DMError err = SingletonContainer::Get<ScreenManagerAdapter>().SetScreenHDRFormat(0, 0);
in HWTEST_F()
|
/foundation/window/window_manager/interfaces/innerkits/dm/ |
H A D | screen.h | 281 DMError SetScreenHDRFormat(int32_t modeIdx);
|
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/screen_manager/ |
H A D | rs_screen.h | 99 virtual int32_t SetScreenHDRFormat(int32_t modeIdx) = 0;
183 int32_t SetScreenHDRFormat(int32_t modeIdx) override;
|
H A D | rs_screen_manager.h | 182 virtual int32_t SetScreenHDRFormat(ScreenId id, int32_t modeIdx) = 0;
391 int32_t SetScreenHDRFormat(ScreenId id, int32_t modeIdx) override;
|
/foundation/window/window_manager/dmserver/include/ |
H A D | display_manager_proxy.h | 62 DMError SetScreenHDRFormat(ScreenId screenId, int32_t modeIdx) override;
|
H A D | display_manager_interface.h | 92 virtual DMError SetScreenHDRFormat(ScreenId screenId, int32_t modeIdx)
in SetScreenHDRFormat() function in OHOS::Rosen::IDisplayManager
|
/foundation/window/window_manager/test/common/mock/ |
H A D | mock_display_manager_adapter.h | 85 MOCK_METHOD2(SetScreenHDRFormat, DMError(ScreenId screenId, int32_t modeIdx));
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/transaction/ |
H A D | rs_interfaces.h | 192 int32_t SetScreenHDRFormat(ScreenId id, int32_t modeIdx);
|
H A D | rs_interfaces.cpp | 523 int32_t RSInterfaces::SetScreenHDRFormat(ScreenId id, int32_t modeIdx)
in SetScreenHDRFormat() function in OHOS::Rosen::RSInterfaces 525 return renderServiceClient_->SetScreenHDRFormat(id, modeIdx);
in SetScreenHDRFormat()
|
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/platform/ohos/ |
H A D | rs_render_service_connection_proxy_test.cpp | 694 * @tc.name: SetScreenHDRFormat Test 695 * @tc.desc: SetScreenHDRFormat Test 699 HWTEST_F(RSRenderServiceConnectionProxyTest, SetScreenHDRFormat, TestSize.Level1) in HWTEST_F() 703 ASSERT_EQ(proxy->SetScreenHDRFormat(id, modeIdx), 2); in HWTEST_F()
|
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service/unittest/screen_manager/ |
H A D | rs_screen_test.cpp | 401 * @tc.desc: SetScreenHDRFormat Test 409 ASSERT_EQ(rsScreen->SetScreenHDRFormat(static_cast<int32_t>(1000)), INVALID_ARGUMENTS); in HWTEST_F() 412 ASSERT_EQ(virtualScreen->SetScreenHDRFormat(static_cast<int32_t>(1000)), INVALID_ARGUMENTS); in HWTEST_F() 1371 * @tc.desc: SetScreenHDRFormat Test, modeIdx < 0 1382 ASSERT_EQ(rsScreen->SetScreenHDRFormat(modeIdx), StatusCode::INVALID_ARGUMENTS); in HWTEST_F() 1387 * @tc.desc: SetScreenHDRFormat Test, modeIdx > 0, IsVirtual() return false,modeIdx < 1402 ASSERT_EQ(rsScreen->SetScreenHDRFormat(modeIdx), StatusCode::SUCCESS); in HWTEST_F()
|
/foundation/graphic/graphic_2d/rosen/test/render/render/unittest/screenmanager/ |
H A D | rs_screen_unit_test.cpp | 387 * @tc.desc: SetScreenHDRFormat Test 395 ASSERT_EQ(rsScreen->SetScreenHDRFormat(static_cast<int32_t>(1000)), INVALID_ARGUMENTS); in HWTEST_F() 398 ASSERT_EQ(virtualScreen->SetScreenHDRFormat(static_cast<int32_t>(1000)), INVALID_ARGUMENTS); in HWTEST_F() 1371 * @tc.desc: SetScreenHDRFormat Test, modeIdx < 0 1382 ASSERT_EQ(rsScreen->SetScreenHDRFormat(modeIdx), StatusCode::INVALID_ARGUMENTS); in HWTEST_F() 1387 * @tc.desc: SetScreenHDRFormat Test, modeIdx > 0, IsVirtual() return false,modeIdx < 1402 ASSERT_EQ(rsScreen->SetScreenHDRFormat(modeIdx), StatusCode::SUCCESS); in HWTEST_F()
|
/foundation/window/window_manager/dmserver/test/unittest/ |
H A D | display_manager_proxy_test.cpp | 550 * @tc.name: SetScreenHDRFormat 551 * @tc.desc: test DisplayManagerProxy::SetScreenHDRFormat 554 HWTEST_F(DisplayManagerProxyTest, SetScreenHDRFormat, Function | SmallTest | Level1) in HWTEST_F() 558 auto result1 = proxy1.SetScreenHDRFormat(0, 0); in HWTEST_F() 565 auto result2 = proxy2.SetScreenHDRFormat(0, 0); in HWTEST_F() 569 auto result3 = proxy2.SetScreenHDRFormat(0, 0); in HWTEST_F()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/platform/ohos/ |
H A D | rs_irender_service_connection.h | 215 virtual int32_t SetScreenHDRFormat(ScreenId id, int32_t modeIdx) = 0;
|
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/fuzztest/rsrenderserviceconnectionproxy_fuzzer/ |
H A D | rsrenderserviceconnectionproxy_fuzzer.cpp | 181 rsRenderServiceConnectionProxy.SetScreenHDRFormat(id1, pid1);
in DoSomethingInterestingWithMyAPI()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/ohos/ |
H A D | rs_render_service_connection_proxy.h | 187 int32_t SetScreenHDRFormat(ScreenId id, int32_t modeIdx) override;
|
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/ |
H A D | rs_render_service_connection.h | 212 int32_t SetScreenHDRFormat(ScreenId id, int32_t modeIdx) override;
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/windows/ |
H A D | rs_render_service_client.cpp | 386 int32_t RSRenderServiceClient::SetScreenHDRFormat(ScreenId id, int32_t modeIdx) in SetScreenHDRFormat() function in OHOS::Rosen::RSRenderServiceClient
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/transaction/ |
H A D | rs_render_service_client.h | 272 int32_t SetScreenHDRFormat(ScreenId id, int32_t modeIdx);
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/darwin/ |
H A D | rs_render_service_client.cpp | 386 int32_t RSRenderServiceClient::SetScreenHDRFormat(ScreenId id, int32_t modeIdx) in SetScreenHDRFormat() function in OHOS::Rosen::RSRenderServiceClient
|
/foundation/window/window_manager/dm/include/ |
H A D | display_manager_adapter.h | 152 virtual DMError SetScreenHDRFormat(ScreenId screenId, int32_t modeIdx);
|
/foundation/window/window_manager/window_scene/screen_session_manager/include/zidl/ |
H A D | screen_session_manager_proxy.h | 49 DMError SetScreenHDRFormat(ScreenId screenId, int32_t modeIdx) override;
|