Home
last modified time | relevance | path

Searched refs:screenId (Results 101 - 125 of 328) sorted by relevance

12345678910>>...14

/foundation/barrierfree/accessibility/services/aams/include/
H A Daccessibility_circle_drawing_manager.h41 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 Ddisplay_manager_lite_proxy.h66 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 Ddisplay_manager_lite.h205 * @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 Dscreen_manager_lite.h68 * @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 Dsingle_display_pocket_fold_policy.h38 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 Daccessibility_circle_drawing_manager.cpp99 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 Dhdi_screen.cpp36 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 Dscreen_manager_adapter_test.cpp223 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 Dboot_animation_operation.cpp44 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 Dscreen_manager_test.cpp522 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 Dwfd_source_impl.cpp109 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 Drs_uni_render_fix_rotation_demo.cpp42 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 Dscreen_capture_def.h28 uint64_t screenId = 0;
38 uint64_t screenId = 0;
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service/unittest/drawable/dfx/
H A Drs_dirty_rects_dfx_test.cpp243 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 Dscreen_session.cpp39 : 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 Dsession_lifecycle_test.cpp467 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 Ddisplay_dumper.cpp147 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 Djs_screen.cpp44 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 Dscreen_model.cpp25 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 Dmock_accessibility_circle_drawing_manager.cpp59 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 Dmock_mt_accessibility_circle_drawing_manager.cpp59 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 Dhgm_screen_info.cpp29 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 Djs_screen_manager.cpp419 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 Ddscreen_manager.h63 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 Dscreen_snapshot_picker_connection.cpp59 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()

Completed in 15 milliseconds

12345678910>>...14