Home
last modified time | relevance | path

Searched refs:screenId (Results 151 - 175 of 334) sorted by relevance

12345678910>>...14

/foundation/window/window_manager/window_scene/session_manager/include/
H A Dsession_manager.h48 int32_t userId, int32_t screenId, bool isConnected, const sptr<ISessionManagerService>& sessionManagerService);
65 void OnWMSConnectionChangedCallback(int32_t userId, int32_t screenId, bool isConnected, bool isCallbackRegistered);
H A Dsession_manager_lite.h58 int32_t userId, int32_t screenId, bool isConnected, const sptr<ISessionManagerService>& sessionManagerService);
75 void OnWMSConnectionChangedCallback(int32_t userId, int32_t screenId, bool isConnected, bool isCallbackRegistered);
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/command/
H A Drs_surface_node_command.cpp208 void SurfaceNodeCommandHelper::AttachToDisplay(RSContext& context, NodeId nodeId, uint64_t screenId) in AttachToDisplay() argument
216 [&surfaceRenderNode, &screenId](const std::shared_ptr<RSDisplayRenderNode>& displayRenderNode) { in AttachToDisplay()
217 if (displayRenderNode == nullptr || displayRenderNode->GetScreenId() != screenId || in AttachToDisplay()
226 void SurfaceNodeCommandHelper::DetachToDisplay(RSContext& context, NodeId nodeId, uint64_t screenId) in DetachToDisplay() argument
234 [&surfaceRenderNode, &screenId](const std::shared_ptr<RSDisplayRenderNode>& displayRenderNode) { in DetachToDisplay()
235 if (displayRenderNode == nullptr || displayRenderNode->GetScreenId() != screenId || in DetachToDisplay()
H A Drs_display_node_command.cpp72 void DisplayNodeCommandHelper::SetScreenId(RSContext& context, NodeId id, uint64_t screenId) in SetScreenId() argument
75 node->SetScreenId(screenId); in SetScreenId()
/foundation/graphic/graphic_2d/rosen/test/render/render/unittest/drawable/
H A Drs_display_node_drawable_test.cpp550 ScreenId screenId = 1; in HWTEST_F() local
551 renderNode_->SetScreenId(screenId); in HWTEST_F()
557 screenManagerImpl.screenPowerStatus_[screenId] = ScreenPowerStatus::POWER_STATUS_OFF; in HWTEST_F()
560 screenManagerImpl.screenPowerStatus_[screenId] = ScreenPowerStatus::POWER_STATUS_SUSPEND; in HWTEST_F()
564 screenManagerImpl.screenPowerStatus_[screenId] = ScreenPowerStatus::POWER_STATUS_OFF; in HWTEST_F()
567 screenManagerImpl.screenPowerStatus_[screenId] = ScreenPowerStatus::POWER_STATUS_SUSPEND; in HWTEST_F()
583 ScreenId screenId = 1; in HWTEST_F() local
584 renderNode_->SetScreenId(screenId); in HWTEST_F()
589 screenManagerImpl.screenPowerStatus_[screenId] = ScreenPowerStatus::POWER_STATUS_ON; in HWTEST_F()
591 screenManagerImpl.screenPowerStatus_[screenId] in HWTEST_F()
719 ScreenId screenId = mirroredDrawable->renderParams_->GetScreenId(); HWTEST_F() local
[all...]
/foundation/CastEngine/castengine_wifi_display/services/impl/screen_capture/
H A Dscreen_capture_session.cpp70 eventMsg->screenId = screenId_; in HandleRtspPlay()
104 screenId_ = inputMsg->screenId; in HandleSessionInit()
105 SHARING_LOGI("videoFormat_: %{public}d, type: %{public}d, screenId: %{public}" SCNu64 in HandleSessionInit()
179 eventMsg->screenId = screenId_; in NotifyProsumerInit()
H A Dscreen_capture_consumer.cpp179 if (!InitCapture(msg->screenId)) { in HandleProsumerPlay()
287 bool ScreenCaptureConsumer::InitCapture(uint64_t screenId) in InitCapture() argument
304 if ((videoTrack_.codecId != CODEC_NONE) && !InitVideoCapture(screenId)) { in InitCapture()
314 bool ScreenCaptureConsumer::InitVideoCapture(uint64_t screenId) in InitVideoCapture() argument
318 config.srcScreenId_ = screenId; in InitVideoCapture()
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/fuzztest/rsdisplaynodecommand_fuzzer/
H A Drsdisplaynodecommand_fuzzer.cpp66 uint64_t screenId = GetData<uint64_t>(); in DoDisplayNode() local
69 RSDisplayNodeConfig config = { screenId, isMirrored, mirrorNodeId }; in DoDisplayNode()
79 DisplayNodeCommandHelper::SetScreenId(context, id, screenId); in DoDisplayNode()
/foundation/window/window_manager/dm/src/zidl/
H A Ddisplay_manager_agent_stub.cpp145 ScreenId screenId; in ProcScreenDisconnect() local
146 if (!data.ReadUint64(screenId)) { in ProcScreenDisconnect()
150 OnScreenDisconnect(screenId); in ProcScreenDisconnect()
/foundation/window/window_manager/dmserver/test/unittest/
H A Dabstract_screen_controller_test.cpp1030 ScreenId screenId = 1; in HWTEST_F() local
1032 DMError ret = absController_->GetScreenSupportedColorGamuts(screenId, colorGamuts); in HWTEST_F()
1044 ScreenId screenId = 1; in HWTEST_F() local
1046 DMError ret = absController_->GetScreenColorGamut(screenId, colorGamut); in HWTEST_F()
1058 ScreenId screenId = 1; in HWTEST_F() local
1060 DMError ret = absController_->SetScreenColorGamut(screenId, colorGamutIdx); in HWTEST_F()
1072 ScreenId screenId = 1; in HWTEST_F() local
1074 DMError ret = absController_->GetScreenGamutMap(screenId, gamutMap); in HWTEST_F()
1086 ScreenId screenId = 1; in HWTEST_F() local
1088 DMError ret = absController_->SetScreenGamutMap(screenId, gamutMa in HWTEST_F()
1100 ScreenId screenId = 1; HWTEST_F() local
[all...]
/foundation/window/window_manager/test/systemtest/dms/
H A Dscreen_manager_test.cpp84 virtual void OnConnect(ScreenId screenId) override
86 WLOGI("OnConnect, screenId:%{public}" PRIu64"", screenId);
87 connectFuture_.SetValue(screenId);
89 virtual void OnDisconnect(ScreenId screenId) override
91 WLOGI("OnDisconnect, screenId:%{public}" PRIu64"", screenId);
92 disconnectFuture_.SetValue(screenId);
94 virtual void OnChange(ScreenId screenId) override
96 WLOGI("OnChange, screenId
946 ScreenId screenId = screenListener->changeFuture_.GetResult(TIME_OUT); HWTEST_F() local
[all...]
/foundation/barrierfree/accessibility/services/aams/src/
H A Daccessibility_display_manager.cpp137 void AccessibilityDisplayManager::SetDisplayScale(const uint64_t screenId, in SetDisplayScale() argument
142 Rosen::DisplayManager::GetInstance().SetDisplayScale(screenId, scaleX, in SetDisplayScale()
/foundation/barrierfree/accessibility/services/test/mock/
H A Dmock_display_manager.cpp144 bool DisplayManager::SetScreenBrightness(uint64_t screenId, uint32_t level) in SetScreenBrightness() argument
149 uint32_t DisplayManager::GetScreenBrightness(uint64_t screenId) const in GetScreenBrightness()
/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/test/fuzztest/hdiscreen_fuzzer/
H A Dhdiscreen_fuzzer.cpp108 uint32_t screenId = GetData<uint32_t>(); in DoSomethingInterestingWithMyAPI() local
109 g_hdiScreen = HdiScreen::CreateHdiScreen(screenId); in DoSomethingInterestingWithMyAPI()
/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/test/systemtest/
H A Dhdibackend_test.cpp41 uint32_t screenId = 0; in SetUpTestCase() local
42 output_ = HdiOutput::CreateHdiOutput(screenId); in SetUpTestCase()
H A Dhdiscreen_test.cpp37 uint32_t screenId = 0; in SetUpTestCase() local
38 hdiScreen_ = HdiScreen::CreateHdiScreen(screenId); in SetUpTestCase()
/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/include/
H A Dhdi_layer.h37 explicit HdiLayer(uint32_t screenId);
43 static std::shared_ptr<HdiLayer> CreateHdiLayer(uint32_t screenId);
/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/test/fuzztest/hdilayer_fuzzer/
H A Dhdilayer_fuzzer.cpp112 uint32_t screenId = GetData<uint32_t>(); in DoSomethingInterestingWithMyAPI() local
120 std::shared_ptr<HdiLayer> hdiLayer = HdiLayer::CreateHdiLayer(screenId); in DoSomethingInterestingWithMyAPI()
/foundation/window/window_manager/window_scene/screen_session_manager/include/
H A Dscreen_setting_helper.h40 static void SetSettingRotationScreenId(int32_t screenId);
42 static bool GetSettingRotationScreenID(int32_t& screenId, const std::string& key = SETTING_ROTATION_SCREEN_ID_KEY);
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/ui/
H A Drs_surface_node.cpp681 void RSSurfaceNode::AttachToDisplay(uint64_t screenId) in AttachToDisplay() argument
683 std::unique_ptr<RSCommand> command = std::make_unique<RSSurfaceNodeAttachToDisplay>(GetId(), screenId); in AttachToDisplay()
689 "screen id: %{public}" PRIu64, GetName().c_str(), GetId(), screenId); in AttachToDisplay()
692 "screen id: %" PRIu64, GetName().c_str(), GetId(), screenId); in AttachToDisplay()
696 void RSSurfaceNode::DetachToDisplay(uint64_t screenId) in DetachToDisplay() argument
698 std::unique_ptr<RSCommand> command = std::make_unique<RSSurfaceNodeDetachToDisplay>(GetId(), screenId); in DetachToDisplay()
703 "screen id: %{public}" PRIu64, GetName().c_str(), GetId(), screenId); in DetachToDisplay()
705 "screen id: %" PRIu64, GetName().c_str(), GetId(), screenId); in DetachToDisplay()
/foundation/window/window_manager/wm/src/
H A Dwindow_manager_lite.cpp49 void NotifyWMSConnected(int32_t userId, int32_t screenId);
50 void NotifyWMSDisconnected(int32_t userId, int32_t screenId);
78 void WindowManagerLite::Impl::NotifyWMSConnected(int32_t userId, int32_t screenId) in NotifyWMSConnected() argument
80 TLOGI(WmsLogTag::WMS_MULTI_USER, "WMS connected [userId:%{public}d; screenId:%{public}d]", userId, screenId); in NotifyWMSConnected()
87 wmsConnectionChangedListener->OnConnected(userId, screenId); in NotifyWMSConnected()
91 void WindowManagerLite::Impl::NotifyWMSDisconnected(int32_t userId, int32_t screenId) in NotifyWMSDisconnected() argument
93 TLOGI(WmsLogTag::WMS_MULTI_USER, "WMS disconnected [userId:%{public}d; screenId:%{public}d]", userId, screenId); in NotifyWMSDisconnected()
100 wmsConnectionChangedListener->OnDisconnected(userId, screenId); in NotifyWMSDisconnected()
713 OnWMSConnectionChanged(int32_t userId, int32_t screenId, bool isConnected) const OnWMSConnectionChanged() argument
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/window_scene/screen/
H A Dscreen_model.h26 static void Create(uint64_t screenId);
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service/unittest/pipeline/
H A Drs_surface_capture_task_test.cpp152 ScreenId screenId = rsInterfaces_->GetDefaultScreenId(); in SetUpTestCase() local
153 defaultConfig_.screenId = screenId; in SetUpTestCase()
154 RSScreenModeInfo modeInfo = rsInterfaces_->GetScreenActiveMode(screenId); in SetUpTestCase()
157 mirrorConfig_.screenId = virtualDisplayId; in SetUpTestCase()
158 mirrorConfig_.mirrorNodeId = screenId; in SetUpTestCase()
179 rsInterfaces_->RemoveVirtualScreen(mirrorConfig_.screenId); in TearDownTestCase()
/foundation/window/window_manager/window_scene/interfaces/kits/napi/screen_session_manager/
H A Djs_screen_session.cpp56 napi_set_named_property(env, objValue, "screenId", in Create()
368 void JsScreenSession::OnConnect(ScreenId screenId) in OnConnect() argument
373 void JsScreenSession::OnDisconnect(ScreenId screenId) in OnDisconnect() argument
378 void JsScreenSession::OnSensorRotationChange(float sensorRotation, ScreenId screenId) in OnSensorRotationChange() argument
417 void JsScreenSession::OnScreenOrientationChange(float screenOrientation, ScreenId screenId) in OnScreenOrientationChange() argument
458 ScreenId screenId) in OnPropertyChange()
583 void JsScreenSession::OnScreenRotationLockedChange(bool isLocked, ScreenId screenId) in OnScreenRotationLockedChange() argument
652 void JsScreenSession::OnHoverStatusChange(int32_t hoverStatus, ScreenId screenId) in OnHoverStatusChange() argument
457 OnPropertyChange(const ScreenProperty& newProperty, ScreenPropertyChangeReason reason, ScreenId screenId) OnPropertyChange() argument
/foundation/window/window_manager/window_scene/screen_session_manager/src/
H A Dscreen_session_dumper.cpp224 for (auto screenId : screenIds) { in ShowAllScreenInfo()
226 oss << "---------------- Screen ID: " << screenId << " ----------------" << std::endl; in ShowAllScreenInfo()
230 DumpScreenSessionById(screenId); in ShowAllScreenInfo()
231 DumpRsInfoById(screenId); in ShowAllScreenInfo()
232 DumpCutoutInfoById(screenId); in ShowAllScreenInfo()
233 DumpScreenInfoById(screenId); in ShowAllScreenInfo()
234 DumpScreenPropertyById(screenId); in ShowAllScreenInfo()

Completed in 19 milliseconds

12345678910>>...14