Home
last modified time | relevance | path

Searched refs:GetContentInfo (Results 1 - 25 of 53) sorted by relevance

123

/foundation/ability/ability_runtime/test/unittest/app_recovery_test/mock/
H A Dmock_app_ability.h32 std::string GetContentInfo() override
H A Dmock_ability.h32 std::string GetContentInfo() override
/foundation/ability/ability_runtime/test/mock/frameworks_kits_ability_native_test/include/
H A Dmock_continuation_ability.h36 MOCK_METHOD0(GetContentInfo, std::string());
H A Dmock_ui_content.h46 MOCK_CONST_METHOD1(GetContentInfo, std::string(ContentInfoType type));
H A Dmock_window.h157 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 Dwindow_scene.h154 std::string GetContentInfo(BackupAndRestoreType type = BackupAndRestoreType::CONTINUATION) const;
/foundation/ability/ability_runtime/frameworks/native/ability/native/continuation/distributed/
H A Dcontinuation_manager_stage.cpp175 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 Dcontinuation_manager.cpp166 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 Dcontinuation_manager_stage.h200 bool GetContentInfo(WantParams &wantParams);
H A Dcontinuation_manager.h112 bool GetContentInfo(WantParams &wantParams);
/foundation/window/window_manager/wm/src/
H A Dwindow_scene.cpp232 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 Ddeclarative_frontend_ng.cpp581 std::string DeclarativeFrontendNG::GetContentInfo(ContentInfoType type) const in GetContentInfo() function in OHOS::Ace::DeclarativeFrontendNG
584 return delegate_->GetContentInfo(type); in GetContentInfo()
H A Ddeclarative_frontend_ng.h143 std::string GetContentInfo(ContentInfoType type) const override;
/foundation/window/window_manager/test/common/mock/
H A Dmock_uicontent.h44 MOCK_CONST_METHOD1(GetContentInfo, std::string(ContentInfoType type));
/foundation/ability/ability_runtime/frameworks/native/ability/native/
H A Dui_ability.cpp705 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 Dwindow_scene_test.cpp349 * @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 Dwindow_session_impl_test2.cpp951 * @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 Dui_content_impl.h68 std::string GetContentInfo(ContentInfoType type) const override;
H A Dace_container.h267 static std::string GetContentInfo(int32_t instanceId, ContentInfoType type);
H A Dui_content_impl.cpp322 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 Dfrontend.h287 virtual std::string GetContentInfo(ContentInfoType type) const in GetContentInfo() function in OHOS::Ace::Frontend
/foundation/arkui/ace_engine/test/mock/interfaces/
H A Dmock_uicontent.h51 MOCK_CONST_METHOD1(GetContentInfo, std::string(ContentInfoType type));
/foundation/ability/ability_runtime/test/unittest/frameworks_kits_ability_native_test/
H A Dcontinuation_test.cpp998 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 Dui_ability.h453 virtual std::string GetContentInfo();
/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/
H A Dfrontend_delegate.h145 virtual std::string GetContentInfo(ContentInfoType type) in GetContentInfo() function in OHOS::Ace::Framework::FrontendDelegate

Completed in 24 milliseconds

123