/foundation/ability/ability_runtime/test/unittest/app_recovery_test/mock/ |
H A D | mock_app_ability.h | 32 std::string GetContentInfo() override
|
H A D | mock_ability.h | 32 std::string GetContentInfo() override
|
/foundation/ability/ability_runtime/test/mock/frameworks_kits_ability_native_test/include/ |
H A D | mock_continuation_ability.h | 36 MOCK_METHOD0(GetContentInfo, std::string());
|
H A D | mock_ui_content.h | 46 MOCK_CONST_METHOD1(GetContentInfo, std::string(ContentInfoType type));
|
H A D | mock_window.h | 157 virtual std::string GetContentInfo(BackupAndRestoreType type = BackupAndRestoreType::CONTINUATION) {return "";} in GetContentInfo() function in OHOS::Rosen::MockWindow
|
/foundation/window/window_manager/interfaces/innerkits/wm/ |
H A D | window_scene.h | 154 std::string GetContentInfo(BackupAndRestoreType type = BackupAndRestoreType::CONTINUATION) const;
|
/foundation/ability/ability_runtime/frameworks/native/ability/native/continuation/distributed/ |
H A D | continuation_manager_stage.cpp | 175 bool ret = GetContentInfo(wantParams); in OnContinueAndGetContent() 177 TAG_LOGE(AAFwkTag::CONTINUATION, "GetContentInfo failed"); in OnContinueAndGetContent() 217 bool ContinuationManagerStage::GetContentInfo(WantParams &wantParams) in GetContentInfo() function in OHOS::AppExecFwk::ContinuationManagerStage 226 std::string pageStack = ability->GetContentInfo(); in GetContentInfo() 228 TAG_LOGE(AAFwkTag::CONTINUATION, "GetContentInfo failed"); in GetContentInfo()
|
H A D | continuation_manager.cpp | 166 bool ret = GetContentInfo(wantParams); in OnContinueAndGetContent() 168 TAG_LOGE(AAFwkTag::CONTINUATION, "GetContentInfo failed"); in OnContinueAndGetContent() 207 bool ContinuationManager::GetContentInfo(WantParams &wantParams) in GetContentInfo() function in OHOS::AppExecFwk::ContinuationManager 216 std::string pageStack = ability->GetContentInfo(); in GetContentInfo() 218 TAG_LOGE(AAFwkTag::CONTINUATION, "GetContentInfo failed"); in GetContentInfo()
|
/foundation/ability/ability_runtime/interfaces/kits/native/ability/native/continuation/distributed/ |
H A D | continuation_manager_stage.h | 200 bool GetContentInfo(WantParams &wantParams);
|
H A D | continuation_manager.h | 112 bool GetContentInfo(WantParams &wantParams);
|
/foundation/window/window_manager/wm/src/ |
H A D | window_scene.cpp | 232 std::string WindowScene::GetContentInfo(BackupAndRestoreType type) const in GetContentInfo() function in OHOS::Rosen::WindowScene 239 return mainWindow->GetContentInfo(type); in GetContentInfo()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ng/ |
H A D | declarative_frontend_ng.cpp | 581 std::string DeclarativeFrontendNG::GetContentInfo(ContentInfoType type) const in GetContentInfo() function in OHOS::Ace::DeclarativeFrontendNG 584 return delegate_->GetContentInfo(type); in GetContentInfo()
|
H A D | declarative_frontend_ng.h | 143 std::string GetContentInfo(ContentInfoType type) const override;
|
/foundation/window/window_manager/test/common/mock/ |
H A D | mock_uicontent.h | 44 MOCK_CONST_METHOD1(GetContentInfo, std::string(ContentInfoType type));
|
/foundation/ability/ability_runtime/frameworks/native/ability/native/ |
H A D | ui_ability.cpp | 705 std::string UIAbility::GetContentInfo() in GetContentInfo() function in OHOS::AbilityRuntime::UIAbility 712 return scene_->GetContentInfo(Rosen::BackupAndRestoreType::CONTINUATION); in GetContentInfo() 722 return scene_->GetContentInfo(Rosen::BackupAndRestoreType::APP_RECOVERY); in GetContentInfoForRecovery() 732 return scene_->GetContentInfo(Rosen::BackupAndRestoreType::RESOURCESCHEDULE_RECOVERY); in GetContentInfoForDefaultRecovery()
|
/foundation/window/window_manager/wm/test/unittest/ |
H A D | window_scene_test.cpp | 349 * @tc.desc: GetContentInfo nullptr
355 ASSERT_EQ("", scene->GetContentInfo());
in HWTEST_F() 360 * @tc.desc: GetContentInfo without scene init
373 ASSERT_EQ("", scene->GetContentInfo());
in HWTEST_F()
|
H A D | window_session_impl_test2.cpp | 951 * @tc.name: GetContentInfo 952 * @tc.desc: GetContentInfo 955 HWTEST_F(WindowSessionImplTest2, GetContentInfo, Function | SmallTest | Level2) in HWTEST_F() 957 auto window = GetTestWindowImpl("GetContentInfo"); in HWTEST_F() 960 ASSERT_EQ(window->GetContentInfo(BackupAndRestoreType::CONTINUATION), ""); in HWTEST_F() 961 ASSERT_EQ(window->GetContentInfo(BackupAndRestoreType::APP_RECOVERY), ""); in HWTEST_F() 962 ASSERT_EQ(window->GetContentInfo(BackupAndRestoreType::NONE), ""); in HWTEST_F() 964 window->GetContentInfo(BackupAndRestoreType::NONE); in HWTEST_F()
|
/foundation/arkui/ace_engine/adapter/preview/entrance/ |
H A D | ui_content_impl.h | 68 std::string GetContentInfo(ContentInfoType type) const override;
|
H A D | ace_container.h | 267 static std::string GetContentInfo(int32_t instanceId, ContentInfoType type);
|
H A D | ui_content_impl.cpp | 322 std::string UIContentImpl::GetContentInfo(ContentInfoType type) const in GetContentInfo() function in OHOS::Ace::UIContentImpl 324 return AceContainer::GetContentInfo(instanceId_, type); in GetContentInfo()
|
/foundation/arkui/ace_engine/frameworks/core/common/ |
H A D | frontend.h | 287 virtual std::string GetContentInfo(ContentInfoType type) const in GetContentInfo() function in OHOS::Ace::Frontend
|
/foundation/arkui/ace_engine/test/mock/interfaces/ |
H A D | mock_uicontent.h | 51 MOCK_CONST_METHOD1(GetContentInfo, std::string(ContentInfoType type));
|
/foundation/ability/ability_runtime/test/unittest/frameworks_kits_ability_native_test/ |
H A D | continuation_test.cpp | 998 EXPECT_CALL(*mockAbility_, GetContentInfo()).Times(1).WillOnce(Return("ContentInfo")); in HWTEST_F() 1388 EXPECT_CALL(*mockAbility_, GetContentInfo()).Times(1).WillOnce(Return("ContentInfo")); in HWTEST_F() 1581 * @tc.desc: call OnContinueAndGetContent with IsContinuePageStack is true but GetContentInfo failed 1607 EXPECT_CALL(*mockAbility_, GetContentInfo()).Times(1).WillOnce(Return("ContentInfo")); in HWTEST_F() 1627 EXPECT_CALL(*mockAbility_, GetContentInfo()).Times(1).WillOnce(Return("ContentInfo")); in HWTEST_F() 2100 * @tc.name: GetContentInfo 2101 * @tc.desc: call GetContentInfo with ability is null 2107 bool result = continuationManager_->GetContentInfo(wantParams); in HWTEST_F()
|
/foundation/ability/ability_runtime/interfaces/kits/native/ability/native/ |
H A D | ui_ability.h | 453 virtual std::string GetContentInfo();
|
/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/ |
H A D | frontend_delegate.h | 145 virtual std::string GetContentInfo(ContentInfoType type) in GetContentInfo() function in OHOS::Ace::Framework::FrontendDelegate
|