Home
last modified time | relevance | path

Searched refs:GetUIContentRemoteObj (Results 1 - 25 of 26) sorted by relevance

12

/foundation/window/window_manager/window_scene/test/mock/
H A Dmock_session_stage.h64 MOCK_METHOD1(GetUIContentRemoteObj, WSError(sptr<IRemoteObject>& uiContentRemoteObj));
/foundation/window/window_manager/window_scene/session/container/include/zidl/
H A Dsession_stage_proxy.h68 WSError GetUIContentRemoteObj(sptr<IRemoteObject>& uiContentRemoteObj) override;
H A Dsession_stage_interface.h146 virtual WSError GetUIContentRemoteObj(sptr<IRemoteObject>& uiContentRemoteObj) = 0;
/foundation/window/window_manager/window_scene/test/unittest/
H A Dsession_stage_proxy_test.cpp176 * @tc.name: GetUIContentRemoteObj
177 * @tc.desc: test function : GetUIContentRemoteObj
180 HWTEST_F(SessionStageProxyTest, GetUIContentRemoteObj, Function | SmallTest | Level1) in HWTEST_F()
184 WSError res = sessionStage_->GetUIContentRemoteObj(remoteObj); in HWTEST_F()
H A Dsession_test.cpp1415 * @tc.name: GetUIContentRemoteObj
1416 * @tc.desc: GetUIContentRemoteObj Test
1419 HWTEST_F(WindowSessionTest, GetUIContentRemoteObj, Function | SmallTest | Level2) in HWTEST_F()
1424 EXPECT_CALL(*(mockSessionStage), GetUIContentRemoteObj(_)).WillRepeatedly(Return(WSError::WS_OK)); in HWTEST_F()
1428 ASSERT_EQ(WSError::WS_OK, session_->GetUIContentRemoteObj(remoteObj)); in HWTEST_F()
1431 ASSERT_EQ(WSError::WS_OK, session_->GetUIContentRemoteObj(remoteObj)); in HWTEST_F()
1435 ASSERT_EQ(WSError::WS_ERROR_INVALID_SESSION, session_->GetUIContentRemoteObj(remoteObj)); in HWTEST_F()
H A Dscene_session_manager_proxy_test.cpp922 * @tc.name: GetUIContentRemoteObj
926 HWTEST_F(sceneSessionManagerProxyTest, GetUIContentRemoteObj, Function | SmallTest | Level2) in HWTEST_F()
932 ASSERT_EQ(WSError::WS_ERROR_IPC_FAILED, sceneSessionManagerProxy->GetUIContentRemoteObj(1, remoteObj)); in HWTEST_F()
H A Dscene_session_manager_test.cpp709 * @tc.name: GetUIContentRemoteObj
710 * @tc.desc: SceneSesionManager GetUIContentRemoteObj
713 HWTEST_F(SceneSessionManagerTest, GetUIContentRemoteObj, Function | SmallTest | Level3) in HWTEST_F()
716 EXPECT_EQ(ssm_->GetUIContentRemoteObj(65535, remoteObj), WSError::WS_ERROR_INVALID_PERMISSION); in HWTEST_F()
718 info.abilityName_ = "GetUIContentRemoteObj"; in HWTEST_F()
719 info.bundleName_ = "GetUIContentRemoteObj"; in HWTEST_F()
723 EXPECT_EQ(ssm_->GetUIContentRemoteObj(65535, remoteObj), WSError::WS_ERROR_INVALID_PERMISSION); in HWTEST_F()
/foundation/window/window_manager/wm/test/unittest/
H A Dwindow_adapter_test.cpp106 * @tc.name: GetUIContentRemoteObj
107 * @tc.desc: WindowAdapter/GetUIContentRemoteObj
110 HWTEST_F(WindowAdapterTest, GetUIContentRemoteObj, Function | SmallTest | Level2) in HWTEST_F()
116 auto ret = windowAdapter.GetUIContentRemoteObj(WINDOW_ID, remoteObj); in HWTEST_F()
H A Dwindow_session_impl_test4.cpp407 * @tc.name: GetUIContentRemoteObj
408 * @tc.desc: GetUIContentRemoteObj and check the retCode
411 HWTEST_F(WindowSessionImplTest4, GetUIContentRemoteObj, Function | SmallTest | Level2) in HWTEST_F()
413 GTEST_LOG_(INFO) << "WindowSessionImplTest4: GetUIContentRemoteObj start"; in HWTEST_F()
419 WSError res = window->GetUIContentRemoteObj(remoteObj); in HWTEST_F()
422 res = window->GetUIContentRemoteObj(remoteObj); in HWTEST_F()
424 GTEST_LOG_(INFO) << "WindowSessionImplTest4: GetUIContentRemoteObj end"; in HWTEST_F()
H A Dwindow_manager_test.cpp756 * @tc.name: GetUIContentRemoteObj
757 * @tc.desc: GetUIContentRemoteObj
760 HWTEST_F(WindowManagerTest, GetUIContentRemoteObj, Function | SmallTest | Level2) in HWTEST_F()
763 WMError res = WindowManager::GetInstance().GetUIContentRemoteObj(1, remoteObj); in HWTEST_F()
/foundation/window/window_manager/window_scene/session_manager/include/zidl/
H A Dscene_session_manager_proxy.h89 WSError GetUIContentRemoteObj(int32_t persistentId, sptr<IRemoteObject>& uiContentRemoteObj) override;
/foundation/window/window_manager/interfaces/innerkits/wm/
H A Dwindow_manager.h709 WMError GetUIContentRemoteObj(int32_t windowId, sptr<IRemoteObject>& uiContentRemoteObj);
/foundation/window/window_manager/wm/include/
H A Dwindow_adapter.h90 virtual WMError GetUIContentRemoteObj(int32_t persistentId, sptr<IRemoteObject>& uiContentRemoteObj);
H A Dwindow_session_impl.h262 WSError GetUIContentRemoteObj(sptr<IRemoteObject>& uiContentRemoteObj) override;
/foundation/window/window_manager/wmserver/include/zidl/
H A Dwindow_manager_interface.h141 virtual WSError GetUIContentRemoteObj(int32_t persistentId, sptr<IRemoteObject>& uiContentRemoteObj) in GetUIContentRemoteObj() function in OHOS::Rosen::IWindowManager
/foundation/window/window_manager/wm/src/
H A Dwindow_adapter.cpp644 WMError WindowAdapter::GetUIContentRemoteObj(int32_t persistentId, sptr<IRemoteObject>& uiContentRemoteObj) in GetUIContentRemoteObj() function in OHOS::Rosen::WindowAdapter
650 return static_cast<WMError>(wmsProxy->GetUIContentRemoteObj(persistentId, uiContentRemoteObj)); in GetUIContentRemoteObj()
H A Dwindow_manager.cpp1149 WMError WindowManager::GetUIContentRemoteObj(int32_t windowId, sptr<IRemoteObject>& uiContentRemoteObj) in GetUIContentRemoteObj() function in OHOS::Rosen::WindowManager
1151 WMError ret = SingletonContainer::Get<WindowAdapter>().GetUIContentRemoteObj(windowId, uiContentRemoteObj); in GetUIContentRemoteObj()
H A Dwindow_session_impl.cpp2037 WSError WindowSessionImpl::GetUIContentRemoteObj(sptr<IRemoteObject>& uiContentRemoteObj) in GetUIContentRemoteObj() function in OHOS::OHOS::Rosen::WindowSessionImpl
/foundation/window/window_manager/window_scene/session/container/src/zidl/
H A Dsession_stage_stub.cpp508 WSError errCode = GetUIContentRemoteObj(uiContentRemoteObj); in HandleGetUIContentRemoteObj()
H A Dsession_stage_proxy.cpp314 WSError SessionStageProxy::GetUIContentRemoteObj(sptr<IRemoteObject>& uiContentRemoteObj) in GetUIContentRemoteObj() function in OHOS::Rosen::SessionStageProxy
/foundation/window/window_manager/window_scene/session/host/include/
H A Dsession.h482 WSError GetUIContentRemoteObj(sptr<IRemoteObject>& uiContentRemoteObj);
/foundation/window/window_manager/window_scene/session/host/src/
H A Dsession.cpp3220 WSError Session::GetUIContentRemoteObj(sptr<IRemoteObject>& uiContentRemoteObj) in GetUIContentRemoteObj() function in OHOS::Rosen::Session
3230 return sessionStage_->GetUIContentRemoteObj(uiContentRemoteObj); in GetUIContentRemoteObj()
/foundation/window/window_manager/window_scene/session_manager/include/
H A Dscene_session_manager.h292 WSError GetUIContentRemoteObj(int32_t persistentId, sptr<IRemoteObject>& uiContentRemoteObj) override;
/foundation/window/window_manager/window_scene/session_manager/src/zidl/
H A Dscene_session_manager_stub.cpp762 WSError ret = GetUIContentRemoteObj(persistentId, uiContentRemoteObj); in HandleGetUIContentRemoteObj()
H A Dscene_session_manager_proxy.cpp1320 WSError SceneSessionManagerProxy::GetUIContentRemoteObj(int32_t persistentId, sptr<IRemoteObject>& uiContentRemoteObj) in GetUIContentRemoteObj() function in OHOS::Rosen::SceneSessionManagerProxy

Completed in 57 milliseconds

12