/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/ |
H A D | rs_vblank_idle_corrector.cpp | 54 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 D | rs_interfaces_virtual_screen_test.cpp | 107 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 D | rs_virtual_screen_refresh_rate_test.cpp | 192 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 D | rs_interfaces_test.cpp | 272 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 D | abstract_display_controller.cpp | 223 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 D | abstract_screen_controller.cpp | 409 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 D | display_manager_service.cpp | 697 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 D | window_rotation_test.cpp | 251 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 D | screen_session.h | 70 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 D | screen_session.cpp | 39 : 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 D | abstract_display_controller_test.cpp | 527 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 D | multi_screen_manager.cpp | 46 ScreenId defaultScreenId = defaultSession->GetScreenId(); in FilterPhysicalAndVirtualScreen() local 52 if (screenSession->GetScreenId() == defaultScreenId) { in FilterPhysicalAndVirtualScreen()
|
H A D | screen_session_manager.cpp | 1353 .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 D | screen_session_manager_client_test.cpp | 1012 ScreenId defaultScreenId = screenSessionManagerClient_->GetDefaultScreenId(); in HWTEST_F() local 1013 screenSessionManagerClient_->UpdateDisplayScale(defaultScreenId, scaleX, scaleY, pivotX, pivotY, translateX, in HWTEST_F()
|
H A D | screen_session_test.cpp | 1148 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 D | screen_session_manager.h | 335 sptr<ScreenSession> CreatePhysicalMirrorSessionInner(ScreenId screenId, ScreenId defaultScreenId,
|
/foundation/window/window_manager/window_scene/session/host/src/ |
H A D | scene_session.cpp | 212 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 D | scene_session_manager.cpp | 5815 ScreenId defaultScreenId = ScreenSessionManagerClient::GetInstance().GetDefaultScreenId(); in IsInSecondaryScreen() local 5816 return sessionProperty->GetDisplayId() != defaultScreenId; in IsInSecondaryScreen()
|