/foundation/window/window_manager/wmserver/src/ |
H A D | window_group_mgr.cpp | 84 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 D | display_group_info.cpp | 215 std::vector<DisplayId> displayIds; in GetAllDisplayIds() local 217 displayIds.push_back(iter.first); in GetAllDisplayIds() 219 return displayIds; in GetAllDisplayIds()
|
H A D | accessibility_connection.cpp | 117 std::vector<DisplayId> displayIds = DisplayManagerServiceInner::GetInstance().GetAllDisplayIds(); in GetAccessibilityWindowInfo() local 118 for (DisplayId displayId : displayIds) { in GetAccessibilityWindowInfo()
|
H A D | window_dumper.cpp | 141 std::vector<DisplayId> displayIds = DisplayGroupInfo::GetInstance().GetAllDisplayIds(); in DumpAllWindowInfo() local 142 for (DisplayId displayId : displayIds) { in DumpAllWindowInfo()
|
H A D | window_root.cpp | 1493 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 D | display_manager_service_inner.cpp | 67 auto displayIds = GetAllDisplayIds();
in GetAllDisplays() local 68 for (auto displayId : displayIds) {
in GetAllDisplays()
|
H A D | display_manager_service.cpp | 160 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 D | display_dumper.cpp | 252 std::vector<DisplayId> displayIds = abstractDisplayController_->GetAllDisplayIds(); in DumpAllDisplayInfo() local 260 for (DisplayId displayId : displayIds) { in DumpAllDisplayInfo()
|
H A D | abstract_display_controller.cpp | 645 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 D | display_manager_test.cpp | 93 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 D | display_manager_adapter_test.cpp | 177 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 D | abstract_display_controller.h | 48 void SetFreeze(std::vector<DisplayId> displayIds, bool isFreeze);
|
H A D | display_manager_proxy.h | 84 bool SetFreeze(std::vector<DisplayId> displayIds, bool isFreeze) override;
|
H A D | display_manager_service.h | 97 bool SetFreeze(std::vector<DisplayId> displayIds, bool isFreeze) override;
|
H A D | display_manager_interface.h | 134 virtual bool SetFreeze(std::vector<DisplayId> displayIds, bool isFreeze) = 0;
|
/foundation/window/window_manager/interfaces/innerkits/dm/ |
H A D | display_manager.h | 347 * @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 D | display_manager.cpp | 875 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 D | display_manager_adapter.cpp | 385 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 D | snapshot_utils.cpp | 417 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 D | abstract_display_controller_test.cpp | 495 std::vector<DisplayId> displayIds(1, 0); in HWTEST_F() 498 absDisplayController_->SetFreeze(displayIds, false); in HWTEST_F()
|
H A D | display_manager_service_test.cpp | 441 std::vector<DisplayId> displayIds = { 0 }; in HWTEST_F() local 443 dms_->SetFreeze(displayIds, isFreeze); in HWTEST_F()
|
H A D | display_manager_proxy_test.cpp | 845 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 D | wfd_source_scene.cpp | 486 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 D | display_manager_adapter.h | 76 virtual bool SetFreeze(std::vector<DisplayId> displayIds, bool isFreeze);
|
/foundation/window/window_manager/window_scene/screen_session_manager/include/zidl/ |
H A D | screen_session_manager_interface.h | 106 virtual bool SetFreeze(std::vector<DisplayId> displayIds, bool isFreeze) override { return false; }
|