/foundation/window/window_manager/window_scene/test/mock/ |
H A D | mock_session_stage.h | 64 MOCK_METHOD1(GetUIContentRemoteObj, WSError(sptr<IRemoteObject>& uiContentRemoteObj));
|
/foundation/window/window_manager/window_scene/session/container/include/zidl/ |
H A D | session_stage_proxy.h | 68 WSError GetUIContentRemoteObj(sptr<IRemoteObject>& uiContentRemoteObj) override;
|
H A D | session_stage_interface.h | 146 virtual WSError GetUIContentRemoteObj(sptr<IRemoteObject>& uiContentRemoteObj) = 0;
|
/foundation/window/window_manager/window_scene/test/unittest/ |
H A D | session_stage_proxy_test.cpp | 176 * @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 D | session_test.cpp | 1415 * @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 D | scene_session_manager_proxy_test.cpp | 922 * @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 D | scene_session_manager_test.cpp | 709 * @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 D | window_adapter_test.cpp | 106 * @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 D | window_session_impl_test4.cpp | 407 * @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 D | window_manager_test.cpp | 756 * @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 D | scene_session_manager_proxy.h | 89 WSError GetUIContentRemoteObj(int32_t persistentId, sptr<IRemoteObject>& uiContentRemoteObj) override;
|
/foundation/window/window_manager/interfaces/innerkits/wm/ |
H A D | window_manager.h | 709 WMError GetUIContentRemoteObj(int32_t windowId, sptr<IRemoteObject>& uiContentRemoteObj);
|
/foundation/window/window_manager/wm/include/ |
H A D | window_adapter.h | 90 virtual WMError GetUIContentRemoteObj(int32_t persistentId, sptr<IRemoteObject>& uiContentRemoteObj);
|
H A D | window_session_impl.h | 262 WSError GetUIContentRemoteObj(sptr<IRemoteObject>& uiContentRemoteObj) override;
|
/foundation/window/window_manager/wmserver/include/zidl/ |
H A D | window_manager_interface.h | 141 virtual WSError GetUIContentRemoteObj(int32_t persistentId, sptr<IRemoteObject>& uiContentRemoteObj) in GetUIContentRemoteObj() function in OHOS::Rosen::IWindowManager
|
/foundation/window/window_manager/wm/src/ |
H A D | window_adapter.cpp | 644 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 D | window_manager.cpp | 1149 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 D | window_session_impl.cpp | 2037 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 D | session_stage_stub.cpp | 508 WSError errCode = GetUIContentRemoteObj(uiContentRemoteObj); in HandleGetUIContentRemoteObj()
|
H A D | session_stage_proxy.cpp | 314 WSError SessionStageProxy::GetUIContentRemoteObj(sptr<IRemoteObject>& uiContentRemoteObj) in GetUIContentRemoteObj() function in OHOS::Rosen::SessionStageProxy
|
/foundation/window/window_manager/window_scene/session/host/include/ |
H A D | session.h | 482 WSError GetUIContentRemoteObj(sptr<IRemoteObject>& uiContentRemoteObj);
|
/foundation/window/window_manager/window_scene/session/host/src/ |
H A D | session.cpp | 3220 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 D | scene_session_manager.h | 292 WSError GetUIContentRemoteObj(int32_t persistentId, sptr<IRemoteObject>& uiContentRemoteObj) override;
|
/foundation/window/window_manager/window_scene/session_manager/src/zidl/ |
H A D | scene_session_manager_stub.cpp | 762 WSError ret = GetUIContentRemoteObj(persistentId, uiContentRemoteObj); in HandleGetUIContentRemoteObj()
|
H A D | scene_session_manager_proxy.cpp | 1320 WSError SceneSessionManagerProxy::GetUIContentRemoteObj(int32_t persistentId, sptr<IRemoteObject>& uiContentRemoteObj) in GetUIContentRemoteObj() function in OHOS::Rosen::SceneSessionManagerProxy
|