/foundation/window/window_manager/dm/src/ |
H A D | screen.cpp | 54 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 D | display_manager_adapter.cpp | 514 sptr<ScreenInfo> ScreenManagerAdapter::GetScreenInfo(ScreenId screenId)
in GetScreenInfo() function in OHOS::Rosen::ScreenManagerAdapter
|
H A D | screen_manager.cpp | 225 auto screenInfo = SingletonContainer::Get<ScreenManagerAdapter>().GetScreenInfo(screenId);
in GetScreen()
|
/foundation/window/window_manager/dm/test/unittest/ |
H A D | screen_test.cpp | 82 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 D | display_manager_adapter_test.cpp | 198 * @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 D | display_dumper.h | 51 void GetScreenInfo(const sptr<AbstractScreen>& screen, std::ostringstream& oss) const;
|
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/drawable/ |
H A D | rs_display_render_node_drawable.cpp | 301 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 D | display_dumper.cpp | 176 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 D | screen.h | 180 sptr<ScreenInfo> GetScreenInfo() const;
|
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/ |
H A D | rs_processor.cpp | 138 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 D | rsrenderparams_fuzzer.cpp | 146 rsRenderParams.GetScreenInfo();
in DoSetShadowRect()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/params/ |
H A D | rs_display_render_params.h | 56 const ScreenInfo& GetScreenInfo() const override
|
H A D | rs_render_params.h | 296 virtual const ScreenInfo& GetScreenInfo() const;
|
/foundation/window/window_manager/test/common/mock/ |
H A D | mock_display_manager_adapter.h | 69 MOCK_METHOD1(GetScreenInfo, sptr<ScreenInfo>(ScreenId screenId));
|
/foundation/window/window_manager/dmserver/test/unittest/ |
H A D | display_dumper_test.cpp | 404 * @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 D | rs_render_params.cpp | 569 const ScreenInfo& RSRenderParams::GetScreenInfo() const in GetScreenInfo() function in OHOS::Rosen::RSRenderParams
|
/foundation/window/window_manager/dm/include/ |
H A D | display_manager_adapter.h | 132 virtual sptr<ScreenInfo> GetScreenInfo(ScreenId screenId);
|
/foundation/window/window_manager/interfaces/kits/napi/screen_runtime/napi/ |
H A D | js_screen.cpp | 301 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 D | rs_display_node_drawable_test.cpp | 729 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 D | rs_display_render_node_drawable_test.cpp | 508 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 D | rs_profiler.cpp | 169 auto screenInfo = params->GetScreenInfo(); in SetDirtyRegion()
|