Home
last modified time | relevance | path

Searched refs:screenId (Results 201 - 225 of 328) sorted by relevance

12345678910>>...14

/foundation/graphic/graphic_2d/frameworks/bootanimation/include/
H A Dboot_picture_player.h37 void InitPicCoordinates(Rosen::ScreenId screenId);
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/fuzztest/rsdisplayrendernode_fuzzer/
H A Drsdisplayrendernode_fuzzer.cpp81 config.screenId = id; in DoSomethingInterestingWithMyAPI()
180 config.screenId = id; in DoUpdateScreenRenderParams()
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/ui/
H A Drs_surface_node.h105 void AttachToDisplay(uint64_t screenId);
106 void DetachToDisplay(uint64_t screenId);
H A Drs_display_node.h45 void SetScreenId(uint64_t screenId);
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/pipeline/
H A Drs_effect_render_node.cpp212 void RSEffectRenderNode::SetCurrentAttachedScreenId(uint64_t screenId) in SetCurrentAttachedScreenId() argument
214 currentAttachedScreenId_ = screenId; in SetCurrentAttachedScreenId()
/foundation/window/window_manager/dmserver/src/
H A Ddisplay_manager_agent_controller.cpp81 void DisplayManagerAgentController::OnScreenDisconnect(ScreenId screenId) in OnScreenDisconnect() argument
89 agent->OnScreenDisconnect(screenId); in OnScreenDisconnect()
/foundation/window/window_manager/dm/src/
H A Dscreen.cpp218 ScreenId screenId = GetId(); in SetScreenActiveMode() local
222 return SingletonContainer::Get<ScreenManagerAdapter>().SetScreenActiveMode(screenId, modeId); in SetScreenActiveMode()
/foundation/window/window_manager/test/fuzztest/dms/screen_fuzzer/
H A Dscreen_fuzzer.cpp161 ScreenId screenId = display->GetScreenId(); in DoMyFuzzTest() local
162 screen = ScreenManager::GetInstance().GetScreenById(screenId); in DoMyFuzzTest()
/foundation/distributedhardware/distributed_screen/services/screenservice/test/unittest/sinkservice/screenregionmgr/1.0/src/
H A Dscreenregion_test.cpp34 uint64_t screenId = 0; in SetUp() local
36 screenRegion_ = std::make_shared<ScreenRegion>(remoteDevId, screenId, displayId); in SetUp()
/foundation/CastEngine/castengine_wifi_display/frameworks/innerkitsimpl/native/wfd/
H A Dwfd_source_impl.h58 int32_t AddDevice(uint64_t screenId, WfdCastDeviceInfo &deviceInfo) override;
/foundation/barrierfree/accessibility/services/aams/include/
H A Daccessibility_display_manager.h43 void SetDisplayScale(const uint64_t screenId, float scaleX, float scaleY, float pivotX, float pivotY);
/foundation/window/window_manager/test/common/mock/
H A Dmock_display_manager_adapter_lite.h49 MOCK_METHOD3(SetSpecifiedScreenPower, bool(ScreenId screenId, ScreenPowerState state,
/foundation/distributedhardware/distributed_screen/services/common/utils/include/
H A Ddscreen_maprelation.h42 void SetScreenId(uint64_t screenId);
/foundation/distributedhardware/distributed_screen/services/screenservice/sinkservice/screenregionmgr/1.0/include/
H A Dscreenregionmgr.h37 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 Dfold_screen_controller.h61 void AddOrRemoveDisplayNodeToTree(ScreenId screenId, int32_t command);
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_client/fuzztest/ui/rssurfacenode_fuzzer/
H A Drssurfacenode_fuzzer.cpp357 uint64_t screenId = GetData<uint64_t>(); in DoAttachToDisplay() local
358 surfaceNode->AttachToDisplay(screenId); in DoAttachToDisplay()
376 uint64_t screenId = GetData<uint64_t>(); in DoDetachToDisplayAndSetHardwareEnabled() local
377 surfaceNode->DetachToDisplay(screenId); in DoDetachToDisplayAndSetHardwareEnabled()
/foundation/window/window_manager/dm/test/unittest/
H A Ddisplay_manager_adapter_test.cpp677 std::vector<ScreenId> screenId; in HWTEST_F() local
680 DMError err = SingletonContainer::Get<ScreenManagerAdapter>().MakeExpand(screenId, in HWTEST_F()
833 ScreenId screenId = displayInfo->GetScreenId(); in HWTEST_F() local
834 displayManagerAdapter.SetDisplayScale(screenId, scaleX, scaleY, pivotX, pivotY); in HWTEST_F()
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/
H A Drs_uni_hwc_prevalidate_util.cpp72 bool RSUniHwcPrevalidateUtil::IsPrevalidateEnable(const ScreenId& screenId) in IsPrevalidateEnable() argument
81 if (screenManager && screenManager->GetDefaultScreenId() != screenId) { in IsPrevalidateEnable()
83 " %{public}" PRIu64 " isn't default screen", screenId); in IsPrevalidateEnable()
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/pipeline/
H A Drs_display_render_node.h74 void SetScreenId(uint64_t screenId) in SetScreenId() argument
76 if (releaseScreenDmaBufferTask_ && screenId_ != screenId) { in SetScreenId()
79 screenId_ = screenId; in SetScreenId()
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/fuzztest/pipeline/rsrendernode_fuzzer/
H A Drsrendernode_fuzzer.cpp239 uint64_t screenId = GetData<uint64_t>(); in RSDisplayRenderNodeFuzzTest() local
242 RSDisplayNodeConfig config = { screenId, isMirrored, mirrorNodeId }; in RSDisplayRenderNodeFuzzTest()
264 displayNode.SetScreenId(screenId); in RSDisplayRenderNodeFuzzTest()
/foundation/window/window_manager/interfaces/innerkits/wm/
H A Dwindow_manager.h68 * @param screenId ID of the screen that is connected to the WMS, screenId is currently always 0.
70 virtual void OnConnected(int32_t userId, int32_t screenId) = 0;
76 * @param screenId ID of the screen that is disconnected to the WMS, screenId is currently always 0.
78 virtual void OnDisconnected(int32_t userId, int32_t screenId) = 0;
833 void OnWMSConnectionChanged(int32_t userId, int32_t screenId, bool isConnected) const;
/foundation/window/window_manager/test/systemtest/dms/
H A Ddisplay_change_test.cpp90 ScreenId screenId = defaultDisplay->GetScreenId(); in SetUpTestCase() local
91 ASSERT_NE(INVALID_SCREEN_ID, screenId); in SetUpTestCase()
92 defaultScreen_ = ScreenManager::GetInstance().GetScreenById(screenId); in SetUpTestCase()
/foundation/graphic/graphic_2d/rosen/samples/composer/
H A Dhello_composer.h56 /* map: key is screenId */
63 void InitLayers(uint32_t screenId);
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/drawable/dfx/
H A Drs_dirty_rects_dfx.h65 bool RefreshRateRotationProcess(ScreenRotation rotation, uint64_t screenId);
/foundation/graphic/graphic_2d/rosen/samples/2d_graphics/test/
H A Ddrawing_sample.h51 // key is screenId
56 // key is screenId
65 // key is screenId
70 void InitLayers(uint32_t screenId);

Completed in 15 milliseconds

12345678910>>...14