/foundation/barrierfree/accessibility/services/aams/include/ |
H A D | accessibility_circle_drawing_manager.h | 41 void CreatePointerWindow(int32_t physicalX, int32_t physicalY, uint64_t screenId); 42 void DrawPointer(int32_t physicalX, int32_t physicalY, int32_t angle, uint64_t screenId, int32_t startAngle); 43 void SetPointerLocation(int32_t physicalX, int32_t physicalY, uint64_t screenId);
|
/foundation/window/window_manager/dm_lite/include/ |
H A D | display_manager_lite_proxy.h | 66 virtual bool SetScreenPowerById(ScreenId screenId, ScreenPowerState state, PowerStateChangeReason reason); 73 virtual bool SetScreenBrightness(uint64_t screenId, uint32_t level); 74 virtual uint32_t GetScreenBrightness(uint64_t screenId);
|
/foundation/window/window_manager/interfaces/innerkits/dm_lite/ |
H A D | display_manager_lite.h | 205 * @param screenId Screen id.
210 bool SetScreenPowerById(ScreenId screenId, ScreenPowerState state, PowerStateChangeReason reason);
240 * @param screenId Target screen.
243 bool SetScreenBrightness(uint64_t screenId, uint32_t level);
248 * @param screenId Screen id.
251 uint32_t GetScreenBrightness(uint64_t screenId) const;
|
H A D | screen_manager_lite.h | 68 * @param screenId Screen id.
73 bool SetSpecifiedScreenPower(ScreenId screenId, ScreenPowerState state, PowerStateChangeReason reason);
87 * @param screenId Screen id.
90 ScreenPowerState GetScreenPower(ScreenId screenId);
|
/foundation/window/window_manager/window_scene/screen_session_manager/include/fold_screen_controller/ |
H A D | single_display_pocket_fold_policy.h | 38 void AddOrRemoveDisplayNodeToTree(ScreenId screenId, int32_t command) override; 49 void ChangeScreenDisplayModePower(ScreenId screenId, ScreenPowerStatus screenPowerStatus); 54 void SendPropertyChangeResult(sptr<ScreenSession> screenSession, ScreenId screenId,
|
/foundation/barrierfree/accessibility/services/aams/src/ |
H A D | accessibility_circle_drawing_manager.cpp | 99 screenId_ = displayMgr.GetDefaultDisplayId(); // default screenId 0 in AccessibilityCircleDrawingManager() 136 void AccessibilityCircleDrawingManager::CreatePointerWindow(int32_t physicalX, int32_t physicalY, uint64_t screenId) in CreatePointerWindow() argument 152 screenId_ = screenId; in CreatePointerWindow() 153 surfaceNode_->AttachToDisplay(screenId); in CreatePointerWindow() 304 void AccessibilityCircleDrawingManager::SetPointerLocation(int32_t physicalX, int32_t physicalY, uint64_t screenId) in SetPointerLocation() argument 312 screenId_ = screenId; in SetPointerLocation() 313 surfaceNode_->AttachToDisplay(screenId); in SetPointerLocation() 331 uint64_t screenId, int32_t startAngle) in DrawPointer() 336 SetPointerLocation(physicalX, physicalY, screenId); in DrawPointer() 343 CreatePointerWindow(physicalX, physicalY, screenId); in DrawPointer() 330 DrawPointer(int32_t physicalX, int32_t physicalY, int32_t angle, uint64_t screenId, int32_t startAngle) DrawPointer() argument [all...] |
/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/src/ |
H A D | hdi_screen.cpp | 36 std::unique_ptr<HdiScreen> HdiScreen::CreateHdiScreen(uint32_t screenId) in CreateHdiScreen() argument 38 return std::make_unique<HdiScreen>(screenId); in CreateHdiScreen() 41 HdiScreen::HdiScreen(uint32_t screenId) : screenId_(screenId) in HdiScreen() argument 43 HLOGI("Create screen, screenId is %{public}d", screenId); in HdiScreen() 48 HLOGI("Destroy screen, screenId is %{public}d", screenId_); in ~HdiScreen() 183 HLOGE("SetScreenVsyncEnabled Failed, screenId:%{public}u, enabled:%{public}d, ret:%{public}d", in SetScreenVsyncEnabled() 185 RS_TRACE_NAME_FMT("SetScreenVsyncEnabled Failed, screenId:%u, enabled:%d, ret:%d", screenId_, enabled, ret); in SetScreenVsyncEnabled()
|
/foundation/distributedhardware/distributed_screen/services/screenservice/test/unittest/sourceservice/dscreenmgr/1.0/src/ |
H A D | screen_manager_adapter_test.cpp | 223 uint64_t screenId = 0; in HWTEST_F() local 224 int32_t ret = ScreenMgrAdapter::GetInstance().SetImageSurface(screenId, surface); in HWTEST_F() 259 uint64_t screenId = ScreenMgrAdapter::GetInstance().CreateVirtualScreen(devId, dhId, videoParam); in HWTEST_F() local 260 std::shared_ptr<DScreenMapRelation> ret = ScreenMgrAdapter::GetInstance().GetMapRelation(screenId); in HWTEST_F() 261 ScreenMgrAdapter::GetInstance().RemoveVirtualScreen(screenId); in HWTEST_F()
|
/foundation/graphic/graphic_2d/frameworks/bootanimation/src/ |
H A D | boot_animation_operation.cpp | 44 LOGI("Init enter, width: %{public}d, height: %{public}d, screenId : " BPUBU64 "", width, height, config.screenId);
in Init() 45 currentScreenId_ = config.screenId;
in Init() 155 params.screenId = currentScreenId_;
in PlayVideo() 171 params.screenId = currentScreenId_;
in PlayPicture() 183 params.screenId = currentScreenId_;
in PlaySound()
|
/foundation/window/window_manager/dm/test/unittest/ |
H A D | screen_manager_test.cpp | 522 ScreenId screenId = ScreenManager::GetInstance().CreateVirtualScreen(defaultOption); in HWTEST_F() local 523 DMError ret = ScreenManager::GetInstance().SetVirtualScreenFlag(screenId, VirtualScreenFlag::CAST); in HWTEST_F() 528 ret = ScreenManager::GetInstance().DestroyVirtualScreen(screenId); in HWTEST_F() 542 ScreenId screenId = ScreenManager::GetInstance().CreateVirtualScreen(defaultOption); in HWTEST_F() local 543 DMError ret = ScreenManager::GetInstance().SetVirtualScreenFlag(screenId, VirtualScreenFlag::MAX); in HWTEST_F() 545 ret = ScreenManager::GetInstance().DestroyVirtualScreen(screenId); in HWTEST_F() 558 ScreenId screenId = ScreenManager::GetInstance().CreateVirtualScreen(defaultOption); in HWTEST_F() local 559 DMError ret = ScreenManager::GetInstance().SetVirtualScreenFlag(screenId, VirtualScreenFlag::CAST); in HWTEST_F() 564 VirtualScreenFlag screenFlag = ScreenManager::GetInstance().GetVirtualScreenFlag(screenId); in HWTEST_F() 566 ret = ScreenManager::GetInstance().DestroyVirtualScreen(screenId); in HWTEST_F() 580 ScreenId screenId = ScreenManager::GetInstance().CreateVirtualScreen(defaultOption); HWTEST_F() local 601 ScreenId screenId = ScreenManager::GetInstance().CreateVirtualScreen(defaultOption); HWTEST_F() local 622 ScreenId screenId = ScreenManager::GetInstance().CreateVirtualScreen(defaultOption); HWTEST_F() local 642 ScreenId screenId = ScreenManager::GetInstance().CreateVirtualScreen(defaultOption); HWTEST_F() local [all...] |
/foundation/CastEngine/castengine_wifi_display/frameworks/innerkitsimpl/native/wfd/ |
H A D | wfd_source_impl.cpp | 109 int32_t WfdSourceImpl::AddDevice(uint64_t screenId, WfdCastDeviceInfo &deviceInfo) in AddDevice() argument 111 SHARING_LOGI("Add deviceId: %{public}s, screenId: %{public}" PRIx64 ".", in AddDevice() 112 GetAnonyString(deviceInfo.deviceId).c_str(), screenId); in AddDevice() 121 msg->screenId = screenId; in AddDevice()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/test/ |
H A D | rs_uni_render_fix_rotation_demo.cpp | 42 uint64_t screenId = 0; variable 127 screenId = DisplayManager::GetInstance().GetDisplayById(displayId)->GetId(); in InitSurface() 128 std::cout << "ScreenId: " << screenId << std::endl; in InitSurface() 129 surfaceNode->AttachToDisplay(screenId); in InitSurface()
|
/foundation/CastEngine/castengine_wifi_display/services/impl/screen_capture/ |
H A D | screen_capture_def.h | 28 uint64_t screenId = 0; 38 uint64_t screenId = 0;
|
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service/unittest/drawable/dfx/ |
H A D | rs_dirty_rects_dfx_test.cpp | 243 uint64_t screenId = 0; in HWTEST_F() local 244 bool res = rsDirtyRectsDfx_->RefreshRateRotationProcess(rotation, screenId); in HWTEST_F() 252 res = rsDirtyRectsDfx_->RefreshRateRotationProcess(rotation, screenId); in HWTEST_F() 256 res = rsDirtyRectsDfx_->RefreshRateRotationProcess(rotation, screenId); in HWTEST_F() 260 res = rsDirtyRectsDfx_->RefreshRateRotationProcess(rotation, screenId); in HWTEST_F() 264 res = rsDirtyRectsDfx_->RefreshRateRotationProcess(rotation, screenId); in HWTEST_F()
|
/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() 43 "[DPNODE]Create Session, reason: %{public}d, screenId: %{public}" PRIu64", rsId: %{public}" PRIu64"", in ScreenSession() 57 rsConfig.screenId = rsId_; in ScreenSession() 61 rsConfig.screenId = screenId_; in ScreenSession() 68 rsConfig.screenId = screenId_; in ScreenSession() 89 "[DPNODE]config screenId: %{public}" PRIu64", mirrorNodeId: %{public}" PRIu64", isMirrored: %{public}d", in CreateDisplayNode() 90 config.screenId, config.mirrorNodeId, static_cast<int32_t>(config.isMirrored)); in CreateDisplayNode() 106 ScreenSession::ScreenSession(ScreenId screenId, ScreenId rsId, const std::string& name, in ScreenSession() argument 108 : name_(name), screenId_(screenId), rsId_(rsId), property_(property), displayNode_(displayNode) in ScreenSession() 113 ScreenSession::ScreenSession(ScreenId screenId, cons argument 130 ScreenSession(ScreenId screenId, const ScreenProperty& property, NodeId nodeId, ScreenId defaultScreenId) ScreenSession() argument 169 SetDisplayNodeScreenId(ScreenId screenId) SetDisplayNodeScreenId() argument 1198 ScreenSessionGroup(ScreenId screenId, ScreenId rsId, std::string name, ScreenCombination combination) ScreenSessionGroup() argument 1263 ScreenId screenId = smsScreen->screenId_; AddChild() local 1300 ScreenId screenId = smsScreen->screenId_; RemoveChild() local [all...] |
/foundation/window/window_manager/window_scene/test/unittest/ |
H A D | session_lifecycle_test.cpp | 467 uint64_t screenId = 0; in HWTEST_F() local 468 session_->SetScreenId(screenId); in HWTEST_F() 499 uint64_t screenId = 0; in HWTEST_F() local 500 session_->SetScreenId(screenId); in HWTEST_F() 531 uint64_t screenId = 0; in HWTEST_F() local 532 session_->SetScreenId(screenId); in HWTEST_F() 603 uint64_t screenId = 0; in HWTEST_F() local 604 session_->SetScreenId(screenId); in HWTEST_F() 621 uint64_t screenId = 0; in HWTEST_F() local 622 session_->SetScreenId(screenId); in HWTEST_F() [all...] |
/foundation/window/window_manager/dmserver/src/ |
H A D | display_dumper.cpp | 147 ScreenId screenId = std::stoull(args[1]); in DumpInfo() local 148 return DumpSpecifiedScreenInfo(screenId, dumpInfo); in DumpInfo() 169 for (ScreenId screenId : screenIds) { in DumpAllScreenInfo() 170 auto screen = abstractScreenController_->GetAbstractScreen(screenId); in DumpAllScreenInfo() 179 auto screenGroup = abstractScreenController_->GetAbstractScreenGroup(screenId); in DumpAllScreenInfo() 180 screenGroups.insert(std::make_pair(screenId, screenGroup)); in DumpAllScreenInfo() 216 DMError DisplayDumper::DumpSpecifiedScreenInfo(ScreenId screenId, std::string& dumpInfo) const in DumpSpecifiedScreenInfo() argument 218 auto screen = abstractScreenController_->GetAbstractScreen(screenId); in DumpSpecifiedScreenInfo()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/window_scene/ |
H A D | js_screen.cpp | 44 auto screenId = static_cast<uint64_t>(info[0]->ToNumber<double>()); in Create() local 45 NG::ScreenModel::Create(screenId); in Create()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/window_scene/screen/ |
H A D | screen_model.cpp | 25 void ScreenModel::Create(uint64_t screenId) in Create() argument 27 auto screenSession = Rosen::ScreenSessionManagerClient::GetInstance().GetScreenSession(screenId); in Create()
|
/foundation/barrierfree/accessibility/services/aams/test/mock/src/ |
H A D | mock_accessibility_circle_drawing_manager.cpp | 59 uint64_t screenId, int32_t startAngle) in DrawPointer() 65 (void)screenId; in DrawPointer() 58 DrawPointer(int32_t physicalX, int32_t physicalY, int32_t angle, uint64_t screenId, int32_t startAngle) DrawPointer() argument
|
/foundation/barrierfree/accessibility/services/test/moduletest/mock/src/ |
H A D | mock_mt_accessibility_circle_drawing_manager.cpp | 59 uint64_t screenId, int32_t startAngle) in DrawPointer() 65 (void)screenId; in DrawPointer() 58 DrawPointer(int32_t physicalX, int32_t physicalY, int32_t angle, uint64_t screenId, int32_t startAngle) DrawPointer() argument
|
/foundation/graphic/graphic_2d/rosen/modules/hyper_graphic_manager/core/hgm_screen_manager/ |
H A D | hgm_screen_info.cpp | 29 HgmScreenType HgmScreenInfo::GetScreenType(ScreenId screenId) in GetScreenType() argument 32 return (screenId == 0) ? HgmScreenType::LTPO : HgmScreenType::LTPS; in GetScreenType()
|
/foundation/window/window_manager/interfaces/kits/napi/screen_runtime/napi/ |
H A D | js_screen_manager.cpp | 419 uint32_t screenId;
in OnMakeMirror() local 422 if (!ConvertFromJsValue(env, value, screenId)) {
in OnMakeMirror() 425 screenIds.emplace_back(static_cast<ScreenId>(screenId));
in OnMakeMirror() 606 uint32_t screenId;
in OnStopMirror() local 609 if (!ConvertFromJsValue(env, value, screenId)) {
in OnStopMirror() 612 screenIds.emplace_back(static_cast<ScreenId>(screenId));
in OnStopMirror() 658 uint32_t screenId;
in OnStopExpand() local 661 if (!ConvertFromJsValue(env, value, screenId)) {
in OnStopExpand() 664 screenIds.emplace_back(static_cast<ScreenId>(screenId));
in OnStopExpand() 694 uint32_t screenId;
in GetExpandOptionFromJs() local 722 uint32_t screenId; GetMultiScreenPositionOptionsFromJs() local 860 int64_t screenId = -1LL; OnDestroyVirtualScreen() local 909 int64_t screenId = -1LL; OnSetVirtualScreenSurface() local [all...] |
/foundation/distributedhardware/distributed_screen/services/screenservice/sourceservice/dscreenmgr/1.0/include/ |
H A D | dscreen_manager.h | 63 std::shared_ptr<DScreen> FindDScreenByScreenId(uint64_t screenId); 64 int32_t AddToGroup(const std::shared_ptr<DScreen> &changedScreen, uint64_t screenId); 65 int32_t RemoveFromGroup(const std::shared_ptr<DScreen> &changedScreen, uint64_t screenId);
|
/foundation/window/window_manager/window_scene/screen_session_manager/src/connection/ |
H A D | screen_snapshot_picker_connection.cpp | 59 int32_t ScreenSnapshotPickerConnection::GetScreenSnapshotInfo(Media::Rect &rect, ScreenId &screenId) in GetScreenSnapshotInfo() argument 95 screenId = static_cast<ScreenId>(GetScreenSessionAbilityConnectionStub()->GetScreenId()); in GetScreenSnapshotInfo() 101 TLOGI(WmsLogTag::DMS, "snapshot area info screenId:%{public}" PRIu64", \ in GetScreenSnapshotInfo() 103 screenId, rect.left, rect.top, rect.width, rect.height); in GetScreenSnapshotInfo()
|