/foundation/window/window_manager/test/fuzztest/dms/screen_fuzzer/ |
H A D | screen_fuzzer.cpp | 130 int32_t colorGamutIdx; in ColorGamutsFuzzTest() local 132 if (data == nullptr || size < sizeof(colorGamutIdx) + sizeof(gamutMap)) { in ColorGamutsFuzzTest() 136 startPos += GetObject<int32_t>(colorGamutIdx, data + startPos, size - startPos); in ColorGamutsFuzzTest() 142 int32_t index = colorGamutIdx % colorGamutsSize; in ColorGamutsFuzzTest()
|
/foundation/window/window_manager/dmserver/src/ |
H A D | abstract_screen.cpp | 297 DMError AbstractScreen::SetScreenColorGamut(int32_t colorGamutIdx)
in SetScreenColorGamut() argument 305 if (colorGamutIdx < 0 || colorGamutIdx >= static_cast<int32_t>(colorGamuts.size())) {
in SetScreenColorGamut() 306 WLOGE("SetScreenColorGamut fail! rsId %{public}" PRIu64" colorGamutIdx %{public}d invalid.",
in SetScreenColorGamut() 307 rsId_, colorGamutIdx);
in SetScreenColorGamut() 310 auto ret = RSInterfaces::GetInstance().SetScreenColorGamut(rsId_, colorGamutIdx);
in SetScreenColorGamut() 315 WLOGI("SetScreenColorGamut ok! rsId %{public}" PRIu64", colorGamutIdx %{public}u",
in SetScreenColorGamut() 316 rsId_, colorGamutIdx);
in SetScreenColorGamut()
|
H A D | display_manager_service.cpp | 328 DMError DisplayManagerService::SetScreenColorGamut(ScreenId screenId, int32_t colorGamutIdx)
in SetScreenColorGamut() argument 330 WLOGFI("SetScreenColorGamut::ScreenId: %{public}" PRIu64 ", colorGamutIdx %{public}d", screenId, colorGamutIdx);
in SetScreenColorGamut() 332 return abstractScreenController_->SetScreenColorGamut(screenId, colorGamutIdx);
in SetScreenColorGamut()
|
H A D | display_manager_stub.cpp | 327 int32_t colorGamutIdx = data.ReadInt32();
in OnRemoteRequest() local 328 DMError ret = SetScreenColorGamut(screenId, colorGamutIdx);
in OnRemoteRequest()
|
H A D | abstract_screen_controller.cpp | 971 DMError AbstractScreenController::SetScreenColorGamut(ScreenId screenId, int32_t colorGamutIdx)
in SetScreenColorGamut() argument 977 return screen->SetScreenColorGamut(colorGamutIdx);
in SetScreenColorGamut()
|
/foundation/window/window_manager/dm/src/ |
H A D | screen.cpp | 139 DMError Screen::SetScreenColorGamut(int32_t colorGamutIdx)
in SetScreenColorGamut() argument 141 return SingletonContainer::Get<ScreenManagerAdapter>().SetScreenColorGamut(GetId(), colorGamutIdx);
in SetScreenColorGamut()
|
H A D | display_manager_adapter.cpp | 87 DMError ScreenManagerAdapter::SetScreenColorGamut(ScreenId screenId, int32_t colorGamutIdx)
in SetScreenColorGamut() argument 91 return displayManagerServiceProxy_->SetScreenColorGamut(screenId, colorGamutIdx);
in SetScreenColorGamut()
|
/foundation/window/window_manager/interfaces/innerkits/dm/ |
H A D | screen.h | 202 * @param colorGamutIdx Color gamut of the screen.
205 DMError SetScreenColorGamut(int32_t colorGamutIdx);
|
/foundation/window/window_manager/dmserver/include/ |
H A D | abstract_screen.h | 65 DMError SetScreenColorGamut(int32_t colorGamutIdx);
|
H A D | display_manager_proxy.h | 53 DMError SetScreenColorGamut(ScreenId screenId, int32_t colorGamutIdx) override;
|
H A D | abstract_screen_controller.h | 83 DMError SetScreenColorGamut(ScreenId screenId, int32_t colorGamutIdx);
|
H A D | display_manager_service.h | 70 DMError SetScreenColorGamut(ScreenId screenId, int32_t colorGamutIdx) override;
|
H A D | display_manager_interface.h | 70 virtual DMError SetScreenColorGamut(ScreenId screenId, int32_t colorGamutIdx) = 0;
|
/foundation/window/window_manager/test/common/mock/ |
H A D | mock_display_manager_adapter.h | 75 MOCK_METHOD2(SetScreenColorGamut, DMError(ScreenId screenId, int32_t colorGamutIdx));
|
/foundation/window/window_manager/window_scene/session/screen/src/ |
H A D | screen_session.cpp | 964 DMError ScreenSession::SetScreenColorGamut(int32_t colorGamutIdx) in SetScreenColorGamut() argument 972 if (colorGamutIdx < 0 || colorGamutIdx >= static_cast<int32_t>(colorGamuts.size())) { in SetScreenColorGamut() 973 WLOGE("SetScreenColorGamut fail! rsId %{public}" PRIu64" colorGamutIdx %{public}d invalid.", in SetScreenColorGamut() 974 rsId_, colorGamutIdx); in SetScreenColorGamut() 977 auto ret = RSInterfaces::GetInstance().SetScreenColorGamut(rsId_, colorGamutIdx); in SetScreenColorGamut() 982 WLOGI("SetScreenColorGamut ok! rsId %{public}" PRIu64", colorGamutIdx %{public}u", in SetScreenColorGamut() 983 rsId_, colorGamutIdx); in SetScreenColorGamut()
|
/foundation/window/window_manager/test/fuzztest/window_scene/screensessionmanager_fuzzer/ |
H A D | screensessionmanager_fuzzer.cpp | 342 int32_t colorGamutIdx = source.GetObject<int32_t>(); in ProxyInterfaceFuzzTestPart4() local 344 proxy->SetScreenColorGamut(screenId, colorGamutIdx); in ProxyInterfaceFuzzTestPart4()
|
/foundation/window/window_manager/dm/include/ |
H A D | display_manager_adapter.h | 144 virtual DMError SetScreenColorGamut(ScreenId screenId, int32_t colorGamutIdx);
|
/foundation/window/window_manager/window_scene/screen_session_manager/include/zidl/ |
H A D | screen_session_manager_interface.h | 77 virtual DMError SetScreenColorGamut(ScreenId screenId, int32_t colorGamutIdx) override { return DMError::DM_OK; }
|
H A D | screen_session_manager_proxy.h | 40 virtual DMError SetScreenColorGamut(ScreenId screenId, int32_t colorGamutIdx) override;
|
/foundation/window/window_manager/window_scene/session/screen/include/ |
H A D | screen_session.h | 146 DMError SetScreenColorGamut(int32_t colorGamutIdx);
|
/foundation/window/window_manager/window_scene/test/dms_unittest/ |
H A D | screen_session_manager_stub_test.cpp | 2548 int32_t colorGamutIdx = 64; in HWTEST_F() local 2549 data.WriteInt32(colorGamutIdx); in HWTEST_F() 2570 uint32_t colorGamutIdx = 64; in HWTEST_F() local 2571 data.WriteUint32(colorGamutIdx); in HWTEST_F()
|
/foundation/window/window_manager/dmserver/test/unittest/ |
H A D | abstract_screen_controller_test.cpp | 1059 int32_t colorGamutIdx = 1; in HWTEST_F() local 1060 DMError ret = absController_->SetScreenColorGamut(screenId, colorGamutIdx); in HWTEST_F()
|
H A D | abstract_screen_test.cpp | 180 int32_t colorGamutIdx = 0; in HWTEST_F() local 181 auto result = absScreen_->SetScreenColorGamut(colorGamutIdx); in HWTEST_F()
|
/foundation/window/window_manager/window_scene/screen_session_manager/src/zidl/ |
H A D | screen_session_manager_stub.cpp | 423 int32_t colorGamutIdx = data.ReadInt32(); in OnRemoteRequest() local 424 DMError ret = SetScreenColorGamut(screenId, colorGamutIdx); in OnRemoteRequest()
|
/foundation/window/window_manager/window_scene/screen_session_manager/include/ |
H A D | screen_session_manager.h | 60 DMError SetScreenColorGamut(ScreenId screenId, int32_t colorGamutIdx) override;
|