Home
last modified time | relevance | path

Searched refs:RecycleForm (Results 1 - 23 of 23) sorted by relevance

/foundation/ability/form_fwk/test/unittest/frs_form_render_record_test/
H A Dmock_form_renderer_group.cpp72 void FormRendererGroup::RecycleForm(std::string& statusData) const in RecycleForm() function in OHOS::Ace::FormRendererGroup
H A Dfrs_form_render_record_test.cpp1601 * @tc.desc: Verify RecycleForm
1613 EXPECT_EQ(formRenderRecordPtr_->RecycleForm(formId, statusData), RECYCLE_FORM_FAILED); in HWTEST_F()
1619 * @tc.desc: Verify RecycleForm
1632 EXPECT_EQ(formRenderRecordPtr_->RecycleForm(formId, statusData), RECYCLE_FORM_FAILED); in HWTEST_F()
1638 * @tc.desc: Verify RecycleForm
1656 EXPECT_EQ(formRenderRecordPtr_->RecycleForm(formId, statusData), ERR_OK); in HWTEST_F()
/foundation/ability/form_fwk/interfaces/inner_api/include/
H A Dform_render_interface.h71 virtual int32_t RecycleForm(const int64_t &formId, const Want &want) { return ERR_OK; } in RecycleForm() function in OHOS::AppExecFwk::IFormRender
H A Dform_render_proxy.h67 int32_t RecycleForm(const int64_t &formId, const Want &want) override;
/foundation/ability/form_fwk/services/form_render_service/include/
H A Dform_render_impl.h94 int32_t RecycleForm(const int64_t &formId, const Want &want) override;
H A Dform_render_record.h135 int32_t RecycleForm(const int64_t &formId, std::string &statusData);
/foundation/ability/form_fwk/test/unittest/fms_form_render_impl_test/
H A Dfms_form_render_impl_test.cpp650 * @tc.desc: 1.Verify RecycleForm interface executes as expected.
651 * 2.call RecycleForm
660 EXPECT_EQ(formRenderImpl.RecycleForm(formId, want), ERR_APPEXECFWK_FORM_INVALID_FORM_ID); in HWTEST_F()
665 * @tc.desc: 1.Verify RecycleForm interface executes as expected.
666 * 2.call RecycleForm
675 EXPECT_EQ(formRenderImpl.RecycleForm(formId, want), ERR_APPEXECFWK_FORM_BIND_PROVIDER_FAILED); in HWTEST_F()
680 * @tc.desc: 1.Verify RecycleForm interface executes as expected.
681 * 2.call RecycleForm
691 EXPECT_EQ(formRenderImpl.RecycleForm(formId, want), RECYCLE_FORM_FAILED); in HWTEST_F()
696 * @tc.desc: 1.Verify RecycleForm interfac
[all...]
/foundation/arkui/ace_engine/interfaces/inner_api/form_render/include/
H A Dform_renderer_group.h84 void RecycleForm(std::string& statusData) const;
H A Dform_renderer.h64 void RecycleForm(std::string& statusData);
/foundation/arkui/ace_engine/interfaces/inner_api/form_render/src/
H A Dform_renderer_group.cpp250 void FormRendererGroup::RecycleForm(std::string& statusData) const in RecycleForm() function in OHOS::Ace::FormRendererGroup
253 HILOG_ERROR("RecycleForm failed, formRenderer is null"); in RecycleForm()
256 formRenderer_->RecycleForm(statusData); in RecycleForm()
H A Dform_renderer.cpp478 void FormRenderer::RecycleForm(std::string& statusData) in RecycleForm() function in OHOS::Ace::FormRenderer
481 HILOG_ERROR("RecycleForm, uiContent_ is null!"); in RecycleForm()
484 statusData = uiContent_->RecycleForm(); in RecycleForm()
/foundation/arkui/ace_engine/test/unittest/interfaces/
H A Dform_render_group_test.cpp209 * @tc.desc: Test RecycleForm() function.
221 group->RecycleForm(data); in HWTEST_F()
379 * @tc.desc: Test RecycleForm() function.
393 group->RecycleForm(statusData); in HWTEST_F()
400 group->RecycleForm(statusData); in HWTEST_F()
H A Dform_render_test.cpp593 * @tc.desc: test RecycleForm
614 formRenderer->RecycleForm(statusData); in HWTEST_F()
617 formRenderer->RecycleForm(statusData); in HWTEST_F()
/foundation/ability/form_fwk/services/form_render_service/src/
H A Dform_render_impl.cpp384 int32_t FormRenderImpl::RecycleForm(const int64_t &formId, const Want &want) in RecycleForm() function in OHOS::AppExecFwk::FormRender::FormRenderImpl
406 auto ret = search->second->RecycleForm(formId, statusData); in RecycleForm()
H A Dform_render_record.cpp1411 int32_t FormRenderRecord::RecycleForm(const int64_t &formId, std::string &statusData) in RecycleForm() function in OHOS::AppExecFwk::FormRender::FormRenderRecord
1413 HILOG_INFO("RecycleForm begin, formId:%{public}s", std::to_string(formId).c_str()); in RecycleForm()
1429 eventHandler_->PostSyncTask(task, "RecycleForm"); in RecycleForm()
1449 search->second->RecycleForm(statusData); in HandleRecycleForm()
/foundation/ability/form_fwk/test/unittest/fms_form_render_proxy_test/
H A Dfms_form_render_proxy_test.cpp187 * @tc.desc: test RecycleForm function.
195 int result = formRenderProxy_->RecycleForm(TEST_FORM_ID, want); in HWTEST_F()
/foundation/ability/form_fwk/interfaces/inner_api/src/
H A Dform_render_stub.cpp198 int32_t result = RecycleForm(formId, *want); in HandleRecycleForm()
H A Dform_render_proxy.cpp261 int32_t FormRenderProxy::RecycleForm(const int64_t &formId, const Want &want) in RecycleForm() function in OHOS::AppExecFwk::FormRenderProxy
/foundation/ability/form_fwk/services/include/
H A Dform_task_mgr.h504 void RecycleForm(const int64_t &formId, const sptr<IRemoteObject> &remoteObjectOfHost,
/foundation/ability/form_fwk/services/src/
H A Dform_task_mgr.cpp1096 FormTaskMgr::GetInstance().RecycleForm(formId, remoteObjectOfHost, remoteObjectOfRender); in PostRecycleForms()
1110 void FormTaskMgr::RecycleForm(const int64_t &formId, const sptr<IRemoteObject> &remoteObjectOfHost, in RecycleForm() function in OHOS::AppExecFwk::FormTaskMgr
1134 int32_t error = remoteFormRender->RecycleForm(formId, want); in RecycleForm()
/foundation/arkui/ace_engine/interfaces/inner_api/ace/
H A Dui_content.h289 virtual std::string RecycleForm() in RecycleForm() function in OHOS::OHOS::Ace::UIContent
/foundation/arkui/ace_engine/adapter/ohos/entrance/
H A Dui_content_impl.h278 std::string RecycleForm() override;
H A Dui_content_impl.cpp3421 std::string UIContentImpl::RecycleForm() in RecycleForm() function in OHOS::Ace::UIContentImpl

Completed in 26 milliseconds