/foundation/window/window_manager/dmserver/test/unittest/ |
H A D | display_manager_proxy_test.cpp | 964 std::vector<ScreenId> mirrorScreenId; in HWTEST_F() local 965 mirrorScreenId.emplace_back(1001); in HWTEST_F() 970 auto result1 = proxy1.MakeMirror(mainScreenId, mirrorScreenId, screenGroupId); in HWTEST_F() 977 auto result2 = proxy2.MakeMirror(mainScreenId, mirrorScreenId, screenGroupId); in HWTEST_F() 981 auto result3 = proxy2.MakeMirror(mainScreenId, mirrorScreenId, screenGroupId); in HWTEST_F() 992 std::vector<ScreenId> mirrorScreenId; in HWTEST_F() local 993 mirrorScreenId.emplace_back(1001); in HWTEST_F() 997 auto result1 = proxy1.StopMirror(mirrorScreenId); in HWTEST_F() 1004 auto result2 = proxy2.StopMirror(mirrorScreenId); in HWTEST_F() 1008 auto result3 = proxy2.StopMirror(mirrorScreenId); in HWTEST_F() [all...] |
/foundation/window/window_manager/interfaces/innerkits/dm/ |
H A D | screen_manager.h | 109 * @param mirrorScreenId Mirror screen ids.
113 DMError MakeMirror(ScreenId mainScreenId, std::vector<ScreenId> mirrorScreenId, ScreenId& screenGroupId);
|
/foundation/window/window_manager/dmserver/src/ |
H A D | display_manager_stub.cpp | 220 std::vector<ScreenId> mirrorScreenId;
in OnRemoteRequest() local 221 if (!data.ReadUInt64Vector(&mirrorScreenId)) {
in OnRemoteRequest() 226 DMError ret = MakeMirror(mainScreenId, mirrorScreenId, screenGroupId);
in OnRemoteRequest()
|
H A D | display_manager_proxy.cpp | 1288 DMError DisplayManagerProxy::MakeMirror(ScreenId mainScreenId, std::vector<ScreenId> mirrorScreenId,
in MakeMirror() argument 1305 data.WriteUInt64Vector(mirrorScreenId);
in MakeMirror()
|
/foundation/window/window_manager/dmserver/include/ |
H A D | display_manager_proxy.h | 85 DMError MakeMirror(ScreenId mainScreenId, std::vector<ScreenId> mirrorScreenId, ScreenId& screenGroupId) override;
|
/foundation/window/window_manager/test/common/mock/ |
H A D | mock_display_manager_adapter.h | 64 MOCK_METHOD3(MakeMirror, DMError(ScreenId mainScreenId, std::vector<ScreenId> mirrorScreenId,
|
/foundation/window/window_manager/dm/src/ |
H A D | screen_manager.cpp | 475 DMError ScreenManager::MakeMirror(ScreenId mainScreenId, std::vector<ScreenId> mirrorScreenId, ScreenId& screenGroupId)
in MakeMirror() argument 478 if (mirrorScreenId.size() > MAX_SCREEN_SIZE) {
in MakeMirror() 479 WLOGFW("Make Mirror failed. The mirrorScreenId size is bigger than %{public}u.", MAX_SCREEN_SIZE);
in MakeMirror() 482 DMError ret = SingletonContainer::Get<ScreenManagerAdapter>().MakeMirror(mainScreenId, mirrorScreenId,
in MakeMirror()
|
H A D | display_manager_adapter.cpp | 476 DMError ScreenManagerAdapter::MakeMirror(ScreenId mainScreenId, std::vector<ScreenId> mirrorScreenId,
in MakeMirror() argument 481 return displayManagerServiceProxy_->MakeMirror(mainScreenId, mirrorScreenId, screenGroupId);
in MakeMirror()
|
/foundation/window/window_manager/dm/test/unittest/ |
H A D | display_manager_adapter_test.cpp | 600 std::vector<ScreenId> mirrorScreenId;
in HWTEST_F() local 603 mirrorScreenId, screenGroupId);
in HWTEST_F()
|
H A D | screen_manager_test.cpp | 731 std::vector<ScreenId> mirrorScreenId; in HWTEST_F() local 733 mirrorScreenId.emplace_back(i); in HWTEST_F() 736 DMError error = ScreenManager::GetInstance().MakeMirror(1, mirrorScreenId, ScreenGroupId); in HWTEST_F()
|
/foundation/window/window_manager/window_scene/screen_session_manager/src/zidl/ |
H A D | screen_session_manager_stub.cpp | 261 std::vector<ScreenId> mirrorScreenId; in OnRemoteRequest() local 262 if (!data.ReadUInt64Vector(&mirrorScreenId)) { in OnRemoteRequest() 267 DMError ret = MakeMirror(mainScreenId, mirrorScreenId, screenGroupId); in OnRemoteRequest()
|
/foundation/window/window_manager/dm/include/ |
H A D | display_manager_adapter.h | 121 virtual DMError MakeMirror(ScreenId mainScreenId, std::vector<ScreenId> mirrorScreenId, ScreenId& screenGroupId);
|