/foundation/multimodalinput/input/tools/vuinput/src/ |
H A D | virtual_touchpad.cpp | 48 SetResolution(item); in VirtualTouchpad()
|
H A D | virtual_pen.cpp | 57 SetResolution(item); in VirtualPen()
|
H A D | virtual_pc_touchpad.cpp | 64 SetResolution(item); in VirtualPcTouchpad()
|
H A D | virtual_finger.cpp | 81 SetResolution(item); in VirtualFinger()
|
H A D | virtual_stylus.cpp | 68 SetResolution(item); in VirtualStylus()
|
/foundation/window/window_manager/setresolution/src/ |
H A D | setresolution_screen.cpp | 57 DMError ret = screens[0]->SetResolution(cmdArgments.width, cmdArgments.height, cmdArgments.dpi); in main() 59 std::cout<< "Error! SetResolution failed!" << std::endl; in main() 62 std::cout<< "SetResolution successful!" << std::endl; in main()
|
/foundation/window/window_manager/dm/test/unittest/ |
H A D | screen_test.cpp | 400 * @tc.name: SetResolution
401 * @tc.desc: SetResolution
404 HWTEST_F(ScreenTest, SetResolution, Function | SmallTest | Level2)
in HWTEST_F() 407 EXPECT_CALL(m->Mock(), SetResolution(_, _, _, _)).Times(1).WillOnce(Return(DMError::DM_OK));
in HWTEST_F() 408 auto res = screen_->SetResolution(0, 0, 1000);
in HWTEST_F() 411 res = screen_->SetResolution(1, 1, 100);
in HWTEST_F()
|
H A D | display_manager_adapter_test.cpp | 743 * @tc.name: SetResolution
747 HWTEST_F(DisplayManagerAdapterTest, SetResolution, Function | SmallTest | Level2)
in HWTEST_F() 751 DMError err = SingletonContainer::Get<ScreenManagerAdapter>().SetResolution(id, 70, 100, 1);
in HWTEST_F()
|
/foundation/window/window_manager/dm/src/ |
H A D | screen.cpp | 263 DMError Screen::SetResolution(uint32_t width, uint32_t height, uint32_t dpi) const
in SetResolution() function in OHOS::Rosen::Screen 271 return SingletonContainer::Get<ScreenManagerAdapter>().SetResolution(GetId(), width, height, density);
in SetResolution()
|
H A D | display_manager_adapter.cpp | 733 DMError ScreenManagerAdapter::SetResolution(ScreenId screenId, uint32_t width, uint32_t height, float virtualPixelRatio)
in SetResolution() function in OHOS::Rosen::ScreenManagerAdapter 737 return displayManagerServiceProxy_->SetResolution(screenId, width, height, virtualPixelRatio);
in SetResolution()
|
/foundation/multimodalinput/input/interfaces/native/innerkits/event/include/ |
H A D | input_device.h | 100 void SetResolution(int32_t resolution);
|
/foundation/multimodalinput/input/tools/vuinput/include/ |
H A D | virtual_device.h | 53 void SetResolution(const ResolutionInfo& resolutionInfo);
|
/foundation/window/window_manager/interfaces/innerkits/dm/ |
H A D | screen.h | 238 DMError SetResolution(uint32_t width, uint32_t height, uint32_t dpi) const;
|
/foundation/multimodalinput/input/frameworks/proxy/events/src/ |
H A D | input_device.cpp | 209 void InputDevice::AxisInfo::SetResolution(int32_t resolution) in SetResolution() function in OHOS::MMI::InputDevice::AxisInfo
|
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/screen_manager/ |
H A D | rs_screen.h | 60 virtual void SetResolution(uint32_t width, uint32_t height) = 0;
144 void SetResolution(uint32_t width, uint32_t height) override;
|
H A D | rs_screen.cpp | 334 void RSScreen::SetResolution(uint32_t width, uint32_t height)
in SetResolution() function in OHOS::Rosen::impl::RSScreen 337 RS_LOGW("RSScreen %{public}s: physical screen not support SetResolution.", __func__);
in SetResolution()
|
/foundation/window/window_manager/dmserver/include/ |
H A D | display_manager_proxy.h | 95 DMError SetResolution(ScreenId screenId, uint32_t width, uint32_t height, float virtualPixelRatio) override;
|
H A D | display_manager_service.h | 113 DMError SetResolution(ScreenId screenId, uint32_t width, uint32_t height,
|
H A D | display_manager_interface.h | 162 virtual DMError SetResolution(ScreenId screenId, uint32_t width, uint32_t height, float virtualPixelRatio) = 0;
|
/foundation/window/window_manager/test/common/mock/ |
H A D | mock_display_manager_adapter.h | 94 MOCK_METHOD4(SetResolution, DMError(ScreenId screenId, uint32_t width, uint32_t height, float virtualPixelRatio));
|
/foundation/arkui/ace_engine/frameworks/base/utils/ |
H A D | system_properties.h | 207 static void SetResolution(double resolution) in SetResolution() function in OHOS::Ace::final
|
/foundation/window/window_manager/dm/include/ |
H A D | display_manager_adapter.h | 135 virtual DMError SetResolution(ScreenId screenId, uint32_t width, uint32_t height, float virtualPixelRatio);
|
/foundation/window/window_manager/window_scene/screen_session_manager/include/zidl/ |
H A D | screen_session_manager_interface.h | 127 virtual DMError SetResolution(ScreenId screenId, uint32_t width, uint32_t height,
|
H A D | screen_session_manager_proxy.h | 36 virtual DMError SetResolution(ScreenId screenId, uint32_t width, uint32_t height, float virtualPixelRatio) override;
|
/foundation/window/window_manager/dmserver/test/unittest/ |
H A D | display_manager_proxy_test.cpp | 1232 * @tc.name: SetResolution 1233 * @tc.desc: test DisplayManagerProxy::SetResolution 1236 HWTEST_F(DisplayManagerProxyTest, SetResolution, Function | SmallTest | Level1) in HWTEST_F() 1242 auto result = proxy.SetResolution(screenId, 50, 100, 1.00); in HWTEST_F() 1460 auto result = proxy.SetResolution(screenId, 50, 100, 1.00); in HWTEST_F()
|