Home
last modified time | relevance | path

Searched refs:GetAvailableArea (Results 1 – 23 of 23) sorted by relevance

/ohos5.0/foundation/window/window_manager/dm/test/unittest/
H A Ddisplay_test.cpp230 HWTEST_F(DisplayTest, GetAvailableArea, Function | SmallTest | Level1)
233 EXPECT_CALL(m->Mock(), GetAvailableArea(_, _)).Times(1).WillOnce(Return(DMError::DM_OK));
235 auto res = defaultDisplay_ ->GetAvailableArea(area);
H A Ddisplay_manager_adapter_test.cpp800 HWTEST_F(DisplayManagerAdapterTest, GetAvailableArea, Function | SmallTest | Level2)
803 DMError err = SingletonContainer::Get<DisplayManagerAdapter>().GetAvailableArea(0, area);
/ohos5.0/foundation/window/window_manager/dm/src/
H A Ddisplay.cpp228 DMError Display::GetAvailableArea(DMRect& area) const in GetAvailableArea() function in OHOS::Rosen::Display
230 return SingletonContainer::Get<DisplayManagerAdapter>().GetAvailableArea(GetId(), area); in GetAvailableArea()
H A Ddisplay_manager_adapter.cpp736 DMError DisplayManagerAdapter::GetAvailableArea(DisplayId displayId, DMRect& area) in GetAvailableArea() function in OHOS::Rosen::DisplayManagerAdapter
744 return displayManagerServiceProxy_->GetAvailableArea(displayId, area); in GetAvailableArea()
/ohos5.0/foundation/window/window_manager/interfaces/innerkits/dm/
H A Ddisplay.h154 DMError GetAvailableArea(DMRect& area) const;
/ohos5.0/foundation/window/window_manager/previewer/include/
H A Ddisplay.h163 DMError GetAvailableArea(DMRect& area) const;
/ohos5.0/foundation/window/window_manager/interfaces/kits/napi/display_runtime/
H A Djs_display.h74 static napi_value GetAvailableArea(napi_env env, napi_callback_info info);
H A Djs_display.cpp190 napi_value JsDisplay::GetAvailableArea(napi_env env, napi_callback_info info) in GetAvailableArea() function in OHOS::Rosen::JsDisplay
473 DmErrorCode ret = DM_JS_TO_ERROR_CODE_MAP.at(display_->GetAvailableArea(area)); in OnGetAvailableArea()
791 … BindNativeFunction(env, objValue, "getAvailableArea", "JsDisplay", JsDisplay::GetAvailableArea); in CreateJsDisplayObject()
/ohos5.0/foundation/window/window_manager/window_scene/session_manager/src/
H A Dscreen_session_dumper.cpp524 << screenProperty.GetAvailableArea().posX_ << ", " in DumpScreenPropertyById()
525 << screenProperty.GetAvailableArea().posY_ << ", " in DumpScreenPropertyById()
526 << screenProperty.GetAvailableArea().width_ << ", " in DumpScreenPropertyById()
527 << screenProperty.GetAvailableArea().height_ << ", " << std::endl; in DumpScreenPropertyById()
H A Dscreen_session_manager.cpp5362 DMError ScreenSessionManager::GetAvailableArea(DisplayId displayId, DMRect& area) in GetAvailableArea() function in OHOS::Rosen::ScreenSessionManager
5374 area = screenSession->GetAvailableArea(); in GetAvailableArea()
/ohos5.0/foundation/window/window_manager/window_scene/session/screen/include/
H A Dscreen_property.h140 DMRect GetAvailableArea() in GetAvailableArea() function
H A Dscreen_session.h219 DMRect GetAvailableArea();
/ohos5.0/foundation/window/window_manager/test/common/mock/
H A Dmock_display_manager_adapter.h45 MOCK_METHOD2(GetAvailableArea, DMError(DisplayId displayId, DMRect& area));
/ohos5.0/foundation/window/window_manager/window_scene/session/screen/src/
H A Dscreen_session.cpp268 displayInfo->SetAvailableWidth(property_.GetAvailableArea().width_); in ConvertToDisplayInfo()
269 displayInfo->SetAvailableHeight(property_.GetAvailableArea().height_); in ConvertToDisplayInfo()
1424 if (property_.GetAvailableArea() == area) { in UpdateAvailableArea()
1436 DMRect ScreenSession::GetAvailableArea() in GetAvailableArea() function in OHOS::Rosen::ScreenSession
1438 return property_.GetAvailableArea(); in GetAvailableArea()
/ohos5.0/foundation/window/window_manager/dm/include/
H A Ddisplay_manager_adapter.h77 virtual DMError GetAvailableArea(DisplayId displayId, DMRect& area);
/ohos5.0/foundation/window/window_manager/dmserver/include/
H A Ddisplay_manager_interface.h154 …virtual DMError GetAvailableArea(DisplayId displayId, DMRect& area) { return DMError::DM_ERROR_DEV… in GetAvailableArea() function
/ohos5.0/foundation/window/window_manager/window_scene/session_manager/include/zidl/
H A Dscreen_session_manager_proxy.h164 virtual DMError GetAvailableArea(DisplayId displayId, DMRect& area) override;
/ohos5.0/foundation/window/window_manager/window_scene/test/dms_unittest/
H A Dscreen_session_manager_test.cpp1587 HWTEST_F(ScreenSessionManagerTest, GetAvailableArea, Function | SmallTest | Level3)
1590 EXPECT_EQ(DMError::DM_ERROR_NULLPTR, ssm_->GetAvailableArea(SCREEN_ID_INVALID, area));
1595 EXPECT_EQ(DMError::DM_OK, ssm_->GetAvailableArea(id, area));
1991 DMRect area = screenSession->GetAvailableArea();
H A Dscreen_session_test.cpp952 DMRect area = screenSession->GetAvailableArea();
986 HWTEST_F(ScreenSessionTest, GetAvailableArea, Function | SmallTest | Level2)
998 auto res = screenSession->GetAvailableArea();
/ohos5.0/foundation/window/window_manager/window_scene/session_manager/include/
H A Dscreen_session_manager.h272 DMError GetAvailableArea(DisplayId displayId, DMRect& area) override;
/ohos5.0/foundation/window/window_manager/window_scene/session_manager/src/zidl/
H A Dscreen_session_manager_stub.cpp857 DMError ret = GetAvailableArea(displayId, area); in ProcGetAvailableArea()
H A Dscreen_session_manager_proxy.cpp2675 DMError ScreenSessionManagerProxy::GetAvailableArea(DisplayId displayId, DMRect& area) in GetAvailableArea() function in OHOS::Rosen::ScreenSessionManagerProxy
/ohos5.0/foundation/arkui/ace_engine/adapter/ohos/entrance/
H A Dui_content_impl.cpp2120 Rosen::DMError ret = defaultDisplay->GetAvailableArea(availableArea); in InitializeDisplayAvailableRect()