/foundation/graphic/graphic_2d/frameworks/bootanimation/include/ |
H A D | boot_picture_player.h | 37 void InitPicCoordinates(Rosen::ScreenId screenId);
|
/foundation/window/window_manager/dmserver/test/unittest/ |
H A D | abstract_screen_controller_test.cpp | 1030 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/CastEngine/castengine_wifi_display/services/impl/screen_capture/ |
H A D | screen_capture_consumer.cpp | 179 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/window/window_manager/test/systemtest/dms/ |
H A D | screen_manager_test.cpp | 84 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/graphic/graphic_2d/rosen/modules/render_service_base/src/command/ |
H A D | rs_display_node_command.cpp | 72 void DisplayNodeCommandHelper::SetScreenId(RSContext& context, NodeId id, uint64_t screenId) in SetScreenId() argument 75 node->SetScreenId(screenId); in SetScreenId()
|
/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/include/ |
H A D | hdi_output.h | 46 HdiOutput(uint32_t screenId); 68 static std::shared_ptr<HdiOutput> CreateHdiOutput(uint32_t screenId);
|
/foundation/distributedhardware/distributed_screen/services/common/utils/src/ |
H A D | dscreen_maprelation.cpp | 37 void DScreenMapRelation::SetScreenId(uint64_t screenId) in SetScreenId() argument 39 screenId_ = screenId; in SetScreenId()
|
/foundation/distributedhardware/distributed_screen/services/screenservice/sinkservice/screenregionmgr/2.0/src/ |
H A D | screenregionmgr.cpp | 133 uint64_t screenId = screenRegion->GetScreenId(); in GetScreenDumpInfo() local 144 << " \"remoteScreenId\" : \"" << screenId << "\",\n" in GetScreenDumpInfo()
|
/foundation/distributedhardware/distributed_screen/services/screenservice/sinkservice/screenregionmgr/1.0/src/ |
H A D | screenregion.cpp | 30 ScreenRegion::ScreenRegion(const std::string &remoteDevId, uint64_t screenId, uint64_t displayId) in ScreenRegion() argument 34 screenId_ = screenId; in ScreenRegion()
|
/foundation/window/window_manager/window_scene/screen_session_manager/src/fold_screen_controller/ |
H A D | fold_screen_controller.cpp | 230 void FoldScreenController::AddOrRemoveDisplayNodeToTree(ScreenId screenId, int32_t command) in AddOrRemoveDisplayNodeToTree() argument 236 foldScreenPolicy_->AddOrRemoveDisplayNodeToTree(screenId, command); in AddOrRemoveDisplayNodeToTree()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/ui/ |
H A D | rs_surface_node.cpp | 681 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 D | window_manager_lite.cpp | 49 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/CastEngine/castengine_wifi_display/frameworks/innerkitsimpl/native/wfd/ |
H A D | wfd_source_impl.h | 58 int32_t AddDevice(uint64_t screenId, WfdCastDeviceInfo &deviceInfo) override;
|
/foundation/barrierfree/accessibility/services/aams/include/ |
H A D | accessibility_display_manager.h | 43 void SetDisplayScale(const uint64_t screenId, float scaleX, float scaleY, float pivotX, float pivotY);
|
/foundation/window/window_manager/test/common/mock/ |
H A D | mock_display_manager_adapter_lite.h | 49 MOCK_METHOD3(SetSpecifiedScreenPower, bool(ScreenId screenId, ScreenPowerState state,
|
/foundation/distributedhardware/distributed_screen/services/common/utils/include/ |
H A D | dscreen_maprelation.h | 42 void SetScreenId(uint64_t screenId);
|
/foundation/distributedhardware/distributed_screen/services/screenservice/sinkservice/screenregionmgr/1.0/include/ |
H A D | screenregionmgr.h | 37 void PublishMessage(const DHTopic topic, const uint64_t &screenId, const std::string &remoteDevId,
|
/foundation/window/window_manager/window_scene/screen_session_manager/include/fold_screen_controller/ |
H A D | fold_screen_controller.h | 61 void AddOrRemoveDisplayNodeToTree(ScreenId screenId, int32_t command);
|
/foundation/graphic/graphic_2d/rosen/test/render/render/unittest/cmd/ |
H A D | rs_display_node_cmd_test.cpp | 66 uint64_t screenId = static_cast<uint64_t>(0); in HWTEST_F() local 67 DisplayNodeCommandHelper::SetScreenId(context, id, screenId); in HWTEST_F() 72 DisplayNodeCommandHelper::SetScreenId(context, id2, screenId); in HWTEST_F()
|
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/command/ |
H A D | rs_display_node_command_test.cpp | 45 uint64_t screenId = static_cast<uint64_t>(0); in HWTEST_F() local 46 DisplayNodeCommandHelper::SetScreenId(context, id, screenId); in HWTEST_F() 51 DisplayNodeCommandHelper::SetScreenId(context, id2, screenId); in HWTEST_F()
|
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_client/fuzztest/rsinterfaces_fuzzer/ |
H A D | rsinterfaces_fuzzer.cpp | 160 ScreenId screenId = INVALID_SCREEN_ID; in RSPhysicalScreenFuzzTest() local 163 ScreenChangeCallback changeCallback = [&screenId, &screenEvent, &callbacked](ScreenId id, ScreenEvent event) { in RSPhysicalScreenFuzzTest() 164 screenId = id; in RSPhysicalScreenFuzzTest()
|
/foundation/graphic/graphic_2d/frameworks/bootanimation/src/ |
H A D | boot_compile_progress.cpp | 66 LOGI("ota compile, screenId: " BPUBU64 "", config.screenId); in Init() 67 screenId_ = config.screenId; in Init() 70 Rosen::RSScreenModeInfo modeInfo = interface.GetScreenActiveMode(config.screenId); in Init()
|
/foundation/window/window_manager/window_scene/session/host/include/ |
H A D | move_drag_controller.h | 103 void OnConnect(ScreenId screenId) override; 104 void OnDisconnect(ScreenId screenId) override; 105 void OnChange(ScreenId screenId) override;
|
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service/unittest/pipeline/ |
H A D | rs_surface_capture_task_test.cpp | 152 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 D | js_screen_session.cpp | 56 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
|