Home
last modified time | relevance | path

Searched refs:GetScreenInfo (Results 1 - 21 of 21) sorted by relevance

/foundation/window/window_manager/dm/src/
H A Dscreen.cpp54 return pImpl_->GetScreenInfo()->GetIsScreenGroup(); in IsGroup()
59 return pImpl_->GetScreenInfo()->GetName(); in GetName()
64 return pImpl_->GetScreenInfo()->GetScreenId(); in GetId()
91 return pImpl_->GetScreenInfo()->GetVirtualWidth(); in GetVirtualWidth()
97 return pImpl_->GetScreenInfo()->GetVirtualHeight(); in GetVirtualHeight()
103 return pImpl_->GetScreenInfo()->GetVirtualPixelRatio(); in GetVirtualPixelRatio()
109 return pImpl_->GetScreenInfo()->GetRotation(); in GetRotation()
115 return pImpl_->GetScreenInfo()->GetOrientation(); in GetOrientation()
120 return pImpl_->GetScreenInfo()->GetType() == ScreenType::REAL; in IsReal()
202 return pImpl_->GetScreenInfo() in GetParentId()
279 sptr<ScreenInfo> Screen::GetScreenInfo() const GetScreenInfo() function in OHOS::Rosen::Screen
[all...]
H A Ddisplay_manager_adapter.cpp514 sptr<ScreenInfo> ScreenManagerAdapter::GetScreenInfo(ScreenId screenId) in GetScreenInfo() function in OHOS::Rosen::ScreenManagerAdapter
H A Dscreen_manager.cpp225 auto screenInfo = SingletonContainer::Get<ScreenManagerAdapter>().GetScreenInfo(screenId); in GetScreen()
/foundation/window/window_manager/dm/test/unittest/
H A Dscreen_test.cpp82 ASSERT_NE(screen_->GetScreenInfo(), nullptr); in HWTEST_F()
206 sptr<ScreenInfo> screenInfo = screen_->GetScreenInfo(); in HWTEST_F()
208 EXPECT_CALL(m->Mock(), GetScreenInfo(_)).Times(1).WillOnce(Return(screenInfo)); in HWTEST_F()
211 EXPECT_CALL(m->Mock(), GetScreenInfo(_)).Times(1).WillOnce(Return(screenInfo)); in HWTEST_F()
223 sptr<ScreenInfo> screenInfo = screen_->GetScreenInfo(); in HWTEST_F()
225 EXPECT_CALL(m->Mock(), GetScreenInfo(_)).Times(1).WillOnce(Return(screenInfo)); in HWTEST_F()
228 EXPECT_CALL(m->Mock(), GetScreenInfo(_)).Times(1).WillOnce(Return(screenInfo)); in HWTEST_F()
240 sptr<ScreenInfo> screenInfo = screen_->GetScreenInfo(); in HWTEST_F()
242 EXPECT_CALL(m->Mock(), GetScreenInfo(_)).Times(1).WillOnce(Return(screenInfo)); in HWTEST_F()
254 sptr<ScreenInfo> screenInfo = screen_->GetScreenInfo(); in HWTEST_F()
[all...]
H A Ddisplay_manager_adapter_test.cpp198 * @tc.name: GetScreenInfo
202 HWTEST_F(DisplayManagerAdapterTest, GetScreenInfo, Function | SmallTest | Level2) in HWTEST_F()
204 sptr<ScreenInfo> info = SingletonContainer::Get<ScreenManagerAdapter>().GetScreenInfo(SCREEN_ID_INVALID); in HWTEST_F()
/foundation/window/window_manager/dmserver/include/
H A Ddisplay_dumper.h51 void GetScreenInfo(const sptr<AbstractScreen>& screen, std::ostringstream& oss) const;
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/drawable/
H A Drs_display_render_node_drawable.cpp301 auto bufferConfig = RSBaseRenderUtil::GetFrameBufferRequestConfig(params.GetScreenInfo(), true, false, in RequestFrame()
424 const auto& screenInfo = params.GetScreenInfo(); in CheckDisplayNodeSkip()
597 auto screenInfo = params->GetScreenInfo(); in OnDraw()
996 rsDirtyRectsDfx.SetVirtualDirtyRects(dirtyRects, params.GetScreenInfo()); in DrawMirror()
1034 rsDirtyRectsDfx.SetVirtualDirtyRects(dirtyRects, params.GetScreenInfo()); in DrawMirrorCopy()
1108 rsDirtyRectsDfx.SetVirtualDirtyRects(damageRegionRects, params.GetScreenInfo()); in WiredScreenProjection()
1151 auto curScreenInfo = params.GetScreenInfo(); in CalculateVirtualDirtyForWiredScreen()
1194 auto mainScreenInfo = mirroredParams->GetScreenInfo(); in ScaleAndRotateMirrorForWiredScreen()
1197 auto mirrorScreenInfo = nodeParams->GetScreenInfo(); in ScaleAndRotateMirrorForWiredScreen()
1578 const ScreenInfo& screenInfo = params->GetScreenInfo(); in PrepareOffscreenRender()
[all...]
/foundation/window/window_manager/dmserver/src/
H A Ddisplay_dumper.cpp176 GetScreenInfo(screen, oss); in DumpAllScreenInfo()
210 GetScreenInfo(screen, oss); in DumpScreenInfo()
327 void DisplayDumper::GetScreenInfo(const sptr<AbstractScreen>& screen, std::ostringstream& oss) const in GetScreenInfo() function in OHOS::Rosen::DisplayDumper
/foundation/window/window_manager/interfaces/innerkits/dm/
H A Dscreen.h180 sptr<ScreenInfo> GetScreenInfo() const;
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/
H A Drs_processor.cpp138 screenInfo_ = displayParams->GetScreenInfo(); in InitForRenderThread()
149 auto mirroredScreenInfo = mirrorNodeParam->GetScreenInfo(); in InitForRenderThread()
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/fuzztest/rsrenderparams_fuzzer/
H A Drsrenderparams_fuzzer.cpp146 rsRenderParams.GetScreenInfo(); in DoSetShadowRect()
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/params/
H A Drs_display_render_params.h56 const ScreenInfo& GetScreenInfo() const override
H A Drs_render_params.h296 virtual const ScreenInfo& GetScreenInfo() const;
/foundation/window/window_manager/test/common/mock/
H A Dmock_display_manager_adapter.h69 MOCK_METHOD1(GetScreenInfo, sptr<ScreenInfo>(ScreenId screenId));
/foundation/window/window_manager/dmserver/test/unittest/
H A Ddisplay_dumper_test.cpp404 * @tc.desc: GetScreenInfo
414 displayDumper->GetScreenInfo(nullptr, oss); in HWTEST_F()
421 * @tc.desc: GetScreenInfo
440 displayDumper->GetScreenInfo(absScreen, oss); in HWTEST_F()
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/params/
H A Drs_render_params.cpp569 const ScreenInfo& RSRenderParams::GetScreenInfo() const in GetScreenInfo() function in OHOS::Rosen::RSRenderParams
/foundation/window/window_manager/dm/include/
H A Ddisplay_manager_adapter.h132 virtual sptr<ScreenInfo> GetScreenInfo(ScreenId screenId);
/foundation/window/window_manager/interfaces/kits/napi/screen_runtime/napi/
H A Djs_screen.cpp301 auto info = screen->GetScreenInfo(); in CreateJsScreenObject()
303 WLOGFE("Failed to GetScreenInfo"); in CreateJsScreenObject()
/foundation/graphic/graphic_2d/rosen/test/render/render/unittest/drawable/
H A Drs_display_node_drawable_test.cpp729 auto mainScreenInfo = mirroredDrawable->renderParams_->GetScreenInfo(); in HWTEST_F()
1099 auto screenInfo = surfaceDrawableAdapter->renderParams_->GetScreenInfo(); in HWTEST_F()
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service/unittest/drawable/
H A Drs_display_render_node_drawable_test.cpp508 auto screenInfo = surfaceDrawableAdapter->renderParams_->GetScreenInfo(); in HWTEST_F()
806 auto mainScreenInfo = mirroredDrawable->renderParams_->GetScreenInfo(); in HWTEST_F()
/foundation/graphic/graphic_2d/rosen/modules/render_service_profiler/
H A Drs_profiler.cpp169 auto screenInfo = params->GetScreenInfo(); in SetDirtyRegion()

Completed in 22 milliseconds