Lines Matching defs:displayIds
875 auto displayIds = GetAllDisplayIds();
876 for (auto displayId : displayIds) {
1936 bool DisplayManager::Freeze(std::vector<DisplayId> displayIds)
1939 if (displayIds.size() == 0) {
1943 if (displayIds.size() > MAX_DISPLAY_SIZE) {
1944 WLOGFE("freeze display fail, displayIds size is bigger than %{public}u.", MAX_DISPLAY_SIZE);
1947 return SingletonContainer::Get<DisplayManagerAdapter>().SetFreeze(displayIds, true);
1950 bool DisplayManager::Unfreeze(std::vector<DisplayId> displayIds)
1953 if (displayIds.size() == 0) {
1957 if (displayIds.size() > MAX_DISPLAY_SIZE) {
1958 WLOGFE("unfreeze display fail, displayIds size is bigger than %{public}u.", MAX_DISPLAY_SIZE);
1961 return SingletonContainer::Get<DisplayManagerAdapter>().SetFreeze(displayIds, false);