Home
last modified time | relevance | path

Searched refs:displayIds (Results 1 - 25 of 29) sorted by relevance

12

/foundation/window/window_manager/wmserver/src/
H A Dwindow_group_mgr.cpp84 std::unordered_set<DisplayId> displayIds; in MoveMissionsToBackground() local
93 displayIds.insert(windowNode->GetDisplayId()); in MoveMissionsToBackground()
96 for (auto displayId : displayIds) { in MoveMissionsToBackground()
124 std::set<DisplayId> displayIds; in MoveMissionToForeground() local
132 displayIds.insert(windowNode->GetDisplayId()); in MoveMissionToForeground()
141 for (auto displayId : displayIds) { in MoveMissionToForeground()
152 for (auto displayId : displayIds) { in MoveMissionToForeground()
H A Ddisplay_group_info.cpp215 std::vector<DisplayId> displayIds; in GetAllDisplayIds() local
217 displayIds.push_back(iter.first); in GetAllDisplayIds()
219 return displayIds; in GetAllDisplayIds()
H A Daccessibility_connection.cpp117 std::vector<DisplayId> displayIds = DisplayManagerServiceInner::GetInstance().GetAllDisplayIds(); in GetAccessibilityWindowInfo() local
118 for (DisplayId displayId : displayIds) { in GetAccessibilityWindowInfo()
H A Dwindow_dumper.cpp141 std::vector<DisplayId> displayIds = DisplayGroupInfo::GetInstance().GetAllDisplayIds(); in DumpAllWindowInfo() local
142 for (DisplayId displayId : displayIds) { in DumpAllWindowInfo()
H A Dwindow_root.cpp1493 std::vector<DisplayId> displayIds; in GetAllDisplayIds() local
1500 displayIds.push_back(displayId); in GetAllDisplayIds()
1503 return displayIds; in GetAllDisplayIds()
1814 std::vector<DisplayId> displayIds = GetAllDisplayIds(); in RemoveSingleUserWindowNodes() local
1815 for (auto id : displayIds) { in RemoveSingleUserWindowNodes()
/foundation/window/window_manager/dmserver/src/
H A Ddisplay_manager_service_inner.cpp67 auto displayIds = GetAllDisplayIds(); in GetAllDisplays() local
68 for (auto displayId : displayIds) { in GetAllDisplays()
H A Ddisplay_manager_service.cpp160 std::vector<DisplayId> displayIds = GetAllDisplayIds(); in HasPrivateWindow() local
161 auto iter = std::find(displayIds.begin(), displayIds.end(), displayId); in HasPrivateWindow()
162 if (iter == displayIds.end()) { in HasPrivateWindow()
517 bool DisplayManagerService::SetFreeze(std::vector<DisplayId> displayIds, bool isFreeze) in SetFreeze() argument
523 abstractDisplayController_->SetFreeze(displayIds, isFreeze); in SetFreeze()
H A Ddisplay_dumper.cpp252 std::vector<DisplayId> displayIds = abstractDisplayController_->GetAllDisplayIds(); in DumpAllDisplayInfo() local
260 for (DisplayId displayId : displayIds) { in DumpAllDisplayInfo()
H A Dabstract_display_controller.cpp645 void AbstractDisplayController::SetFreeze(std::vector<DisplayId> displayIds, bool toFreeze) in SetFreeze() argument
651 for (DisplayId displayId : displayIds) { in SetFreeze()
/foundation/window/window_manager/dm/test/unittest/
H A Ddisplay_manager_test.cpp93 std::vector<DisplayId> displayIds; in HWTEST_F() local
94 displayIds.push_back(0); in HWTEST_F()
95 bool ret = DisplayManager::GetInstance().Freeze(displayIds); in HWTEST_F()
105 * @tc.desc: test Freeze displayIds exceed the maximum
110 std::vector<DisplayId> displayIds; in HWTEST_F() local
112 displayIds.push_back(i); in HWTEST_F()
114 bool ret = DisplayManager::GetInstance().Freeze(displayIds); in HWTEST_F()
122 * @tc.desc: test Freeze displayIds empty
127 std::vector<DisplayId> displayIds; in HWTEST_F() local
128 bool ret = DisplayManager::GetInstance().Freeze(displayIds); in HWTEST_F()
141 std::vector<DisplayId> displayIds; HWTEST_F() local
158 std::vector<DisplayId> displayIds; HWTEST_F() local
174 std::vector<DisplayId> displayIds; HWTEST_F() local
[all...]
H A Ddisplay_manager_adapter_test.cpp177 std::vector<DisplayId> displayIds; in HWTEST_F() local
178 bool ret = SingletonContainer::Get<DisplayManagerAdapter>().SetFreeze(displayIds, false); in HWTEST_F()
/foundation/window/window_manager/dmserver/include/
H A Dabstract_display_controller.h48 void SetFreeze(std::vector<DisplayId> displayIds, bool isFreeze);
H A Ddisplay_manager_proxy.h84 bool SetFreeze(std::vector<DisplayId> displayIds, bool isFreeze) override;
H A Ddisplay_manager_service.h97 bool SetFreeze(std::vector<DisplayId> displayIds, bool isFreeze) override;
H A Ddisplay_manager_interface.h134 virtual bool SetFreeze(std::vector<DisplayId> displayIds, bool isFreeze) = 0;
/foundation/window/window_manager/interfaces/innerkits/dm/
H A Ddisplay_manager.h347 * @param displayIds Display id needed to freeze.
350 bool Freeze(std::vector<DisplayId> displayIds);
355 * @param displayIds Display id needed to unfreeze.
358 bool Unfreeze(std::vector<DisplayId> displayIds);
/foundation/window/window_manager/dm/src/
H A Ddisplay_manager.cpp875 auto displayIds = GetAllDisplayIds(); in GetAllDisplays() local
876 for (auto displayId : displayIds) { in GetAllDisplays()
1936 bool DisplayManager::Freeze(std::vector<DisplayId> displayIds) in Freeze() argument
1939 if (displayIds.size() == 0) { in Freeze()
1943 if (displayIds.size() > MAX_DISPLAY_SIZE) { in Freeze()
1944 WLOGFE("freeze display fail, displayIds size is bigger than %{public}u.", MAX_DISPLAY_SIZE); in Freeze()
1947 return SingletonContainer::Get<DisplayManagerAdapter>().SetFreeze(displayIds, true); in Freeze()
1950 bool DisplayManager::Unfreeze(std::vector<DisplayId> displayIds) in Unfreeze() argument
1953 if (displayIds.size() == 0) { in Unfreeze()
1957 if (displayIds in Unfreeze()
[all...]
H A Ddisplay_manager_adapter.cpp385 bool DisplayManagerAdapter::SetFreeze(std::vector<DisplayId> displayIds, bool isFreeze) in SetFreeze() argument
389 return displayManagerServiceProxy_->SetFreeze(displayIds, isFreeze); in SetFreeze()
/foundation/window/window_manager/snapshot/src/
H A Dsnapshot_utils.cpp417 auto displayIds = DisplayManager::GetInstance().GetAllDisplayIds(); in ProcessDisplayId() local
418 for (auto id : displayIds) { in ProcessDisplayId()
426 std::cout << "tips: supported displayIds:" << std::endl; in ProcessDisplayId()
427 for (auto dispId : displayIds) { in ProcessDisplayId()
/foundation/window/window_manager/dmserver/test/unittest/
H A Dabstract_display_controller_test.cpp495 std::vector<DisplayId> displayIds(1, 0); in HWTEST_F()
498 absDisplayController_->SetFreeze(displayIds, false); in HWTEST_F()
H A Ddisplay_manager_service_test.cpp441 std::vector<DisplayId> displayIds = { 0 }; in HWTEST_F() local
443 dms_->SetFreeze(displayIds, isFreeze); in HWTEST_F()
H A Ddisplay_manager_proxy_test.cpp845 std::vector<DisplayId> displayIds; in HWTEST_F() local
846 auto result1 = proxy1.SetFreeze(displayIds, true); in HWTEST_F()
850 auto result2 = proxy1.SetFreeze(displayIds, true); in HWTEST_F()
/foundation/CastEngine/castengine_wifi_display/services/impl/scene/wfd/
H A Dwfd_source_scene.cpp486 auto displayIds = OHOS::Rosen::DisplayManager::GetInstance().GetAllDisplayIds(); in HandleAddDevice() local
488 for (auto displayId : displayIds) { in HandleAddDevice()
/foundation/window/window_manager/dm/include/
H A Ddisplay_manager_adapter.h76 virtual bool SetFreeze(std::vector<DisplayId> displayIds, bool isFreeze);
/foundation/window/window_manager/window_scene/screen_session_manager/include/zidl/
H A Dscreen_session_manager_interface.h106 virtual bool SetFreeze(std::vector<DisplayId> displayIds, bool isFreeze) override { return false; }

Completed in 29 milliseconds

12