/foundation/ability/form_fwk/interfaces/inner_api/include/ |
H A D | form_render_interface.h | 73 virtual int32_t RecoverForm(const FormJsInfo &formJsInfo, const Want &want) { return ERR_OK; } in RecoverForm() function in OHOS::AppExecFwk::IFormRender
|
H A D | form_render_proxy.h | 69 int32_t RecoverForm(const FormJsInfo &formJsInfo, const Want &want) override;
|
/foundation/arkui/ace_engine/interfaces/inner_api/form_render/src/ |
H A D | form_renderer.cpp | 153 RecoverForm(statusData); in AddForm() 181 RecoverForm(statusData); in RunFormPage() 487 void FormRenderer::RecoverForm(const std::string& statusData) in RecoverForm() function in OHOS::Ace::FormRenderer 490 HILOG_ERROR("RecoverForm, uiContent_ is null!"); in RecoverForm() 493 uiContent_->RecoverForm(statusData); in RecoverForm()
|
/foundation/ability/form_fwk/services/form_render_service/include/ |
H A D | form_render_impl.h | 96 int32_t RecoverForm(const FormJsInfo &formJsInfo, const Want &want) override;
|
H A D | form_render_record.h | 137 int32_t RecoverForm(const FormJsInfo &formJsInfo, const std::string &statusData,
|
/foundation/ability/form_fwk/test/unittest/fms_form_render_impl_test/ |
H A D | fms_form_render_impl_test.cpp | 759 * @tc.desc: 1.Verify RecoverForm interface executes as expected.
760 * 2.call RecoverForm
770 EXPECT_EQ(formRenderImpl.RecoverForm(info, want), ERR_APPEXECFWK_FORM_INVALID_FORM_ID);
in HWTEST_F() 775 * @tc.desc: 1.Verify RecoverForm interface executes as expected.
776 * 2.call RecoverForm
786 EXPECT_EQ(formRenderImpl.RecoverForm(info, want), ERR_APPEXECFWK_FORM_BIND_PROVIDER_FAILED);
in HWTEST_F() 791 * @tc.desc: 1.Verify RecoverForm interface executes as expected.
792 * 2.call RecoverForm
804 EXPECT_EQ(formRenderImpl.RecoverForm(info, want), RENDER_FORM_FAILED);
in HWTEST_F() 809 * @tc.desc: 1.Verify RecoverForm interfac [all...] |
/foundation/arkui/ace_engine/interfaces/inner_api/form_render/include/ |
H A D | form_renderer.h | 65 void RecoverForm(const std::string& statusData);
|
/foundation/ability/form_fwk/services/form_render_service/src/ |
H A D | form_render_impl.cpp | 435 int32_t FormRenderImpl::RecoverForm(const FormJsInfo &formJsInfo, const Want &want)
in RecoverForm() function in OHOS::AppExecFwk::FormRender::FormRenderImpl 464 return search->second->RecoverForm(formJsInfo, statusData, isRecoverFormToHandleClickEvent);
in RecoverForm()
|
H A D | form_render_record.cpp | 1453 int32_t FormRenderRecord::RecoverForm(const FormJsInfo &formJsInfo,
in RecoverForm() function in OHOS::AppExecFwk::FormRender::FormRenderRecord 1457 HILOG_INFO("RecoverForm begin, formId:%{public}s", std::to_string(formId).c_str());
in RecoverForm() 1473 eventHandler_->PostTask(task, "RecoverForm");
in RecoverForm()
|
/foundation/ability/form_fwk/test/unittest/fms_form_render_proxy_test/ |
H A D | fms_form_render_proxy_test.cpp | 202 * @tc.desc: test RecoverForm function. 211 int result = formRenderProxy_->RecoverForm(formJsInfo, want); in HWTEST_F()
|
/foundation/ability/form_fwk/interfaces/inner_api/src/ |
H A D | form_render_stub.cpp | 215 int32_t result = RecoverForm(*formJsInfo, *want); in HandleRecoverForm()
|
H A D | form_render_proxy.cpp | 292 int32_t FormRenderProxy::RecoverForm(const FormJsInfo &formJsInfo, const Want &want) in RecoverForm() function in OHOS::AppExecFwk::FormRenderProxy
|
/foundation/ability/form_fwk/services/include/ |
H A D | form_task_mgr.h | 513 void RecoverForm(const FormRecord &record, const Want &want, const sptr<IRemoteObject> &remoteObject);
|
/foundation/ability/form_fwk/services/src/ |
H A D | form_task_mgr.cpp | 1156 FormTaskMgr::GetInstance().RecoverForm(record, want, remoteObject); in PostRecoverForm() 1168 void FormTaskMgr::RecoverForm(const FormRecord &record, const Want &want, const sptr<IRemoteObject> &remoteObject) in RecoverForm() function in OHOS::AppExecFwk::FormTaskMgr 1180 int32_t error = remoteFormRender->RecoverForm(formJsInfo, want); in RecoverForm()
|
/foundation/arkui/ace_engine/interfaces/inner_api/ace/ |
H A D | ui_content.h | 298 virtual void RecoverForm(const std::string &statusData) {} in RecoverForm() function in OHOS::OHOS::Ace::UIContent
|
/foundation/arkui/ace_engine/test/unittest/interfaces/ |
H A D | form_render_test.cpp | 622 * @tc.desc: test RecoverForm 643 formRenderer->RecoverForm(statusData); in HWTEST_F() 646 formRenderer->RecoverForm(statusData); in HWTEST_F()
|
/foundation/arkui/ace_engine/adapter/ohos/entrance/ |
H A D | ui_content_impl.h | 280 void RecoverForm(const std::string& statusData) override;
|
H A D | ui_content_impl.cpp | 3431 void UIContentImpl::RecoverForm(const std::string& statusData) in RecoverForm() function in OHOS::Ace::UIContentImpl
|
/foundation/ability/form_fwk/test/unittest/frs_form_render_record_test/ |
H A D | frs_form_render_record_test.cpp | 1662 * @tc.desc: Verify RecoverForm 1672 EXPECT_EQ(formRenderRecordPtr_->RecoverForm(formJsInfo, statusData, true), ERR_OK); in HWTEST_F()
|