Home
last modified time | relevance | path

Searched refs:defaultScreenId (Results 1 - 18 of 18) sorted by relevance

/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/
H A Drs_vblank_idle_corrector.cpp54 auto defaultScreenId = screenManager->GetDefaultScreenId(); in ProcessScreenConstraint() local
59 screenManager->SetScreenConstraint(defaultScreenId, 0, ScreenConstraintType::CONSTRAINT_ADAPTIVE); in ProcessScreenConstraint()
67 screenManager->SetScreenConstraint(defaultScreenId, 0, ScreenConstraintType::CONSTRAINT_NONE); in ProcessScreenConstraint()
82 currIdleScreenId_ = defaultScreenId; in ProcessScreenConstraint()
87 screenManager->SetScreenConstraint(defaultScreenId, in ProcessScreenConstraint()
90 screenManager->SetScreenConstraint(defaultScreenId, 0, ScreenConstraintType::CONSTRAINT_NONE); in ProcessScreenConstraint()
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/test/systemtest/
H A Drs_interfaces_virtual_screen_test.cpp107 ScreenId defaultScreenId = RSInterfaces::GetInstance().GetDefaultScreenId(); in HWTEST_F() local
108 std::cout << "ids.size = " << ids.size() << ", defaultScreenId:" << defaultScreenId << std::endl; in HWTEST_F()
110 if (screenId == defaultScreenId) { in HWTEST_F()
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/test/unittest/
H A Drs_virtual_screen_refresh_rate_test.cpp192 ScreenId defaultScreenId = rsInterfaces->GetDefaultScreenId(); in HWTEST_F() local
193 EXPECT_NE(defaultScreenId, INVALID_SCREEN_ID); in HWTEST_F()
196 std::cout << "Set defaultScreenId:" << defaultScreenId << ", maxRefreshRate:" << maxRefreshRate << std::endl; in HWTEST_F()
197 int32_t ret = rsInterfaces->SetVirtualScreenRefreshRate(defaultScreenId, maxRefreshRate, actualRefreshRate); in HWTEST_F()
H A Drs_interfaces_test.cpp272 ScreenId defaultScreenId = rsInterfaces->GetDefaultScreenId(); in HWTEST_F() local
273 EXPECT_NE(defaultScreenId, INVALID_SCREEN_ID); in HWTEST_F()
1016 ScreenId defaultScreenId = rsInterfaces->GetDefaultScreenId(); in HWTEST_F() local
1018 uint32_t statusMode = rsInterfaces->SetScreenGamutMap(defaultScreenId, mode); in HWTEST_F()
1020 statusMode = rsInterfaces->GetScreenGamutMap(defaultScreenId, mode); in HWTEST_F()
/foundation/window/window_manager/dmserver/src/
H A Dabstract_display_controller.cpp223 ScreenId defaultScreenId = abstractScreenController_->GetDefaultAbstractScreenId(); in ProcessNormalScreenDisconnected() local
224 sptr<AbstractScreen> defaultScreen = abstractScreenController_->GetAbstractScreen(defaultScreenId); in ProcessNormalScreenDisconnected()
555 ScreenId defaultScreenId = abstractScreenController_->GetDefaultAbstractScreenId(); in BindAloneScreenLocked() local
556 if (defaultScreenId != SCREEN_ID_INVALID) { in BindAloneScreenLocked()
557 if (defaultScreenId != realAbsScreen->dmsId_) { in BindAloneScreenLocked()
616 ScreenId defaultScreenId = abstractScreenController_->GetDefaultAbstractScreenId(); in AddScreenToExpandLocked() local
617 sptr<AbstractScreen> defaultScreen = abstractScreenController_->GetAbstractScreen(defaultScreenId); in AddScreenToExpandLocked()
707 ScreenId defaultScreenId = abstractScreenController_->GetDefaultAbstractScreenId(); in GetDefaultDisplayId() local
708 sptr<AbstractDisplay> defaultDisplay = GetAbstractDisplayByScreen(defaultScreenId); in GetDefaultDisplayId()
H A Dabstract_screen_controller.cpp409 auto defaultScreenId = GetDefaultAbstractScreenId(); in ProcessScreenDisconnected() local
412 if (screenItem->dmsId_ != defaultScreenId) { in ProcessScreenDisconnected()
416 MakeMirror(defaultScreenId, screens); in ProcessScreenDisconnected()
582 ScreenId defaultScreenId = GetDefaultAbstractScreenId(); in AddAsSuccedentScreenLocked() local
583 auto iter = dmsScreenMap_.find(defaultScreenId); in AddAsSuccedentScreenLocked()
585 WLOGE("AddAsSuccedentScreenLocked. defaultScreenId:%{public}" PRIu64" is not in dmsScreenMap_.", in AddAsSuccedentScreenLocked()
586 defaultScreenId); in AddAsSuccedentScreenLocked()
1226 ScreenId defaultScreenId = GetDefaultAbstractScreenId(); in MakeExpand() local
1227 WLOGI("MakeExpand, defaultScreenId:%{public}" PRIu64"", defaultScreenId); in MakeExpand()
[all...]
H A Ddisplay_manager_service.cpp697 ScreenId defaultScreenId = abstractScreenController_->GetDefaultAbstractScreenId(); in MakeExpand() local
698 WLOGFI("MakeExpand, defaultScreenId:%{public}" PRIu64"", defaultScreenId); in MakeExpand()
700 auto iter = std::find(allExpandScreenIds.begin(), allExpandScreenIds.end(), defaultScreenId); in MakeExpand()
/foundation/window/window_manager/test/systemtest/wms/
H A Dwindow_rotation_test.cpp251 ScreenId defaultScreenId = displayDefault->GetScreenId(); in HWTEST_F() local
252 auto defaultScreen = ScreenManager::GetInstance().GetScreenById(defaultScreenId); in HWTEST_F()
294 ScreenId defaultScreenId = displayDefault->GetScreenId(); in HWTEST_F() local
295 auto defaultScreen = ScreenManager::GetInstance().GetScreenById(defaultScreenId); in HWTEST_F()
/foundation/window/window_manager/window_scene/session/screen/include/
H A Dscreen_session.h70 ScreenId defaultScreenId {0};
92 ScreenSession(ScreenId screenId, const ScreenProperty& property, ScreenId defaultScreenId);
93 ScreenSession(ScreenId screenId, const ScreenProperty& property, NodeId nodeId, ScreenId defaultScreenId);
94 ScreenSession(const std::string& name, ScreenId smsId, ScreenId rsId, ScreenId defaultScreenId);
/foundation/window/window_manager/window_scene/session/screen/src/
H A Dscreen_session.cpp39 : name_(config.name), screenId_(config.screenId), rsId_(config.rsId), defaultScreenId_(config.defaultScreenId), in ScreenSession()
113 ScreenSession::ScreenSession(ScreenId screenId, const ScreenProperty& property, ScreenId defaultScreenId) in ScreenSession() argument
114 : screenId_(screenId), defaultScreenId_(defaultScreenId), property_(property) in ScreenSession()
131 NodeId nodeId, ScreenId defaultScreenId) in ScreenSession()
132 : screenId_(screenId), defaultScreenId_(defaultScreenId), property_(property) in ScreenSession()
150 ScreenSession::ScreenSession(const std::string& name, ScreenId smsId, ScreenId rsId, ScreenId defaultScreenId) in ScreenSession() argument
151 : name_(name), screenId_(smsId), rsId_(rsId), defaultScreenId_(defaultScreenId) in ScreenSession()
130 ScreenSession(ScreenId screenId, const ScreenProperty& property, NodeId nodeId, ScreenId defaultScreenId) ScreenSession() argument
/foundation/window/window_manager/dmserver/test/unittest/
H A Dabstract_display_controller_test.cpp527 ScreenId defaultScreenId = absDisplayController->abstractScreenController_->GetDefaultAbstractScreenId(); in HWTEST_F() local
528 sptr<AbstractDisplay> defaultDisplay = absDisplayController->GetAbstractDisplayByScreen(defaultScreenId); in HWTEST_F()
/foundation/window/window_manager/window_scene/screen_session_manager/src/
H A Dmulti_screen_manager.cpp46 ScreenId defaultScreenId = defaultSession->GetScreenId(); in FilterPhysicalAndVirtualScreen() local
52 if (screenSession->GetScreenId() == defaultScreenId) { in FilterPhysicalAndVirtualScreen()
H A Dscreen_session_manager.cpp1353 .defaultScreenId = defScreenId, in CreatePhysicalMirrorSessionInner()
1392 .defaultScreenId = defScreenId, in GetScreenSessionInner()
2252 ScreenId defaultScreenId = GetDefaultScreenId(); in SetDpiFromSettingData() local
2253 SetVirtualPixelRatio(defaultScreenId, dpi); in SetDpiFromSettingData()
3480 ScreenId defaultScreenId = GetDefaultScreenId(); in MakeExpand() local
3482 auto iter = std::find(allExpandScreenIds.begin(), allExpandScreenIds.end(), defaultScreenId); in MakeExpand()
3514 ScreenId defaultScreenId = GetDefaultScreenId(); in OnMakeExpand() local
3515 TLOGI(WmsLogTag::DMS, "OnMakeExpand, defaultScreenId:%{public}" PRIu64"", defaultScreenId); in OnMakeExpand()
3516 auto defaultScreen = GetScreenSession(defaultScreenId); in OnMakeExpand()
3799 ScreenId defaultScreenId = GetDefaultScreenId(); AddAsSuccedentScreenLocked() local
5784 SetDefaultScreenId(ScreenId defaultScreenId) SetDefaultScreenId() argument
[all...]
/foundation/window/window_manager/window_scene/test/dms_unittest/
H A Dscreen_session_manager_client_test.cpp1012 ScreenId defaultScreenId = screenSessionManagerClient_->GetDefaultScreenId(); in HWTEST_F() local
1013 screenSessionManagerClient_->UpdateDisplayScale(defaultScreenId, scaleX, scaleY, pivotX, pivotY, translateX, in HWTEST_F()
H A Dscreen_session_test.cpp1148 ScreenId defaultScreenId = 0; in HWTEST_F() local
1150 sptr<ScreenSession> session = new(std::nothrow) ScreenSession(screenId, property, nodeId, defaultScreenId); in HWTEST_F()
/foundation/window/window_manager/window_scene/screen_session_manager/include/
H A Dscreen_session_manager.h335 sptr<ScreenSession> CreatePhysicalMirrorSessionInner(ScreenId screenId, ScreenId defaultScreenId,
/foundation/window/window_manager/window_scene/session/host/src/
H A Dscene_session.cpp212 ScreenId defaultScreenId = ScreenSessionManagerClient::GetInstance().GetDefaultScreenId(); in Foreground() local
216 (sessionProperty != nullptr && defaultScreenId == sessionProperty->GetDisplayId()) && in Foreground()
/foundation/window/window_manager/window_scene/session_manager/src/
H A Dscene_session_manager.cpp5815 ScreenId defaultScreenId = ScreenSessionManagerClient::GetInstance().GetDefaultScreenId(); in IsInSecondaryScreen() local
5816 return sessionProperty->GetDisplayId() != defaultScreenId; in IsInSecondaryScreen()

Completed in 53 milliseconds