Home
last modified time | relevance | path

Searched refs:SetScreenHDRFormat (Results 1 - 25 of 44) sorted by relevance

12

/foundation/window/window_manager/dm/src/
H A Dscreen.cpp179 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 Ddisplay_manager_adapter.cpp148 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 Dscreen_test.cpp331 * @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 Ddisplay_manager_adapter_test.cpp358 * @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 Dscreen.h281 DMError SetScreenHDRFormat(int32_t modeIdx);
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/screen_manager/
H A Drs_screen.h99 virtual int32_t SetScreenHDRFormat(int32_t modeIdx) = 0;
183 int32_t SetScreenHDRFormat(int32_t modeIdx) override;
H A Drs_screen_manager.h182 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 Ddisplay_manager_proxy.h62 DMError SetScreenHDRFormat(ScreenId screenId, int32_t modeIdx) override;
H A Ddisplay_manager_interface.h92 virtual DMError SetScreenHDRFormat(ScreenId screenId, int32_t modeIdx) in SetScreenHDRFormat() function in OHOS::Rosen::IDisplayManager
/foundation/window/window_manager/test/common/mock/
H A Dmock_display_manager_adapter.h85 MOCK_METHOD2(SetScreenHDRFormat, DMError(ScreenId screenId, int32_t modeIdx));
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/transaction/
H A Drs_interfaces.h192 int32_t SetScreenHDRFormat(ScreenId id, int32_t modeIdx);
H A Drs_interfaces.cpp523 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 Drs_render_service_connection_proxy_test.cpp694 * @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 Drs_screen_test.cpp401 * @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 Drs_screen_unit_test.cpp387 * @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 Ddisplay_manager_proxy_test.cpp550 * @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 Drs_irender_service_connection.h215 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 Drsrenderserviceconnectionproxy_fuzzer.cpp181 rsRenderServiceConnectionProxy.SetScreenHDRFormat(id1, pid1); in DoSomethingInterestingWithMyAPI()
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/ohos/
H A Drs_render_service_connection_proxy.h187 int32_t SetScreenHDRFormat(ScreenId id, int32_t modeIdx) override;
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/
H A Drs_render_service_connection.h212 int32_t SetScreenHDRFormat(ScreenId id, int32_t modeIdx) override;
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/windows/
H A Drs_render_service_client.cpp386 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 Drs_render_service_client.h272 int32_t SetScreenHDRFormat(ScreenId id, int32_t modeIdx);
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/darwin/
H A Drs_render_service_client.cpp386 int32_t RSRenderServiceClient::SetScreenHDRFormat(ScreenId id, int32_t modeIdx) in SetScreenHDRFormat() function in OHOS::Rosen::RSRenderServiceClient
/foundation/window/window_manager/dm/include/
H A Ddisplay_manager_adapter.h152 virtual DMError SetScreenHDRFormat(ScreenId screenId, int32_t modeIdx);
/foundation/window/window_manager/window_scene/screen_session_manager/include/zidl/
H A Dscreen_session_manager_proxy.h49 DMError SetScreenHDRFormat(ScreenId screenId, int32_t modeIdx) override;

Completed in 26 milliseconds

12