/foundation/ability/form_fwk/test/unittest/frs_form_render_record_test/ |
H A D | mock_form_renderer_group.cpp | 57 void FormRendererGroup::ReloadForm(const AppExecFwk::FormJsInfo& formJsInfo)
in ReloadForm() function in OHOS::Ace::FormRendererGroup
|
/foundation/ability/form_fwk/interfaces/inner_api/include/ |
H A D | form_render_interface.h | 64 virtual int32_t ReloadForm(const std::vector<FormJsInfo> &&formJsInfos, const Want &want) { return ERR_OK; } in ReloadForm() function in OHOS::AppExecFwk::IFormRender
|
H A D | form_render_proxy.h | 63 int32_t ReloadForm(const std::vector<FormJsInfo> &&formJsInfos, const Want &want) override;
|
/foundation/ability/form_fwk/test/unittest/fms_form_render_mgr_test/ |
H A D | mock_form_render_mgr_inner.cpp | 83 ErrCode FormRenderMgrInner::ReloadForm(const std::vector<FormRecord> &&formRecords,
in ReloadForm() function in OHOS::AppExecFwk::FormRenderMgrInner
|
H A D | fms_form_render_mgr_test.cpp | 250 * @tc.desc: test ReloadForm function and formRecords is empty.
261 formRenderMgr.ReloadForm(std::move(formRecords), bundleName, userId));
in HWTEST_F() 267 * @tc.desc: 1.test ReloadForm function and formRecords is not empty.
285 EXPECT_EQ(ERR_OK, formRenderMgr.ReloadForm(std::move(formRecords), bundleName, userId));
in HWTEST_F() 291 * @tc.desc: 1.test ReloadForm function and formRecords is not empty.
315 EXPECT_EQ(ERR_OK, formRenderMgr.ReloadForm(std::move(formRecords), bundleName, userId));
in HWTEST_F()
|
/foundation/ability/form_fwk/services/form_render_service/include/ |
H A D | form_render_impl.h | 77 int32_t ReloadForm(const std::vector<FormJsInfo> &&formJsInfos, const Want &want) override;
|
/foundation/ability/form_fwk/test/fuzztest/formrenderimpl_fuzzer/ |
H A D | formrenderimpl_fuzzer.cpp | 54 formRenderImpl.ReloadForm(std::move(formJsInfos), want);
in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/form_fwk/test/fuzztest/formrenderproxy_fuzzer/ |
H A D | formrenderproxy_fuzzer.cpp | 56 formRenderProxy.ReloadForm(std::move(formJsInfos), want);
in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/form_fwk/services/include/ |
H A D | form_render_mgr.h | 58 ErrCode ReloadForm(const std::vector<FormRecord> &&formRecords, const std::string &bundleName, int32_t userId);
|
H A D | form_render_mgr_inner.h | 51 ErrCode ReloadForm(const std::vector<FormRecord> &&formRecords, const std::string &bundleName, int32_t userId);
|
H A D | form_task_mgr.h | 463 void ReloadForm(const std::vector<FormRecord> &&formRecords, const Want &want,
|
/foundation/ability/form_fwk/test/fuzztest/formrendermgr_fuzzer/ |
H A D | formrendermgr_fuzzer.cpp | 56 formRenderMgr.ReloadForm(std::move(formRecords), bundleName, userId);
in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/form_fwk/test/fuzztest/formrenderstub_fuzzer/ |
H A D | formrenderstub_fuzzer.cpp | 57 int32_t ReloadForm(const std::vector<FormJsInfo> &&formJsInfos, const Want &want) override
|
/foundation/ability/form_fwk/test/fuzztest/formrendermgrinner_fuzzer/ |
H A D | formrendermgrinner_fuzzer.cpp | 58 formRenderMgrInner.ReloadForm(std::move(formRecords), bundleName, userId);
in DoSomethingInterestingWithMyAPI()
|
/foundation/arkui/ace_engine/interfaces/inner_api/form_render/include/ |
H A D | form_renderer_group.h | 79 void ReloadForm(const AppExecFwk::FormJsInfo& formJsInfo);
|
H A D | form_renderer.h | 49 void ReloadForm(const std::string& url);
|
/foundation/arkui/ace_engine/interfaces/inner_api/form_render/src/ |
H A D | form_renderer_group.cpp | 144 void FormRendererGroup::ReloadForm(const AppExecFwk::FormJsInfo& formJsInfo) in ReloadForm() function in OHOS::Ace::FormRendererGroup 147 HILOG_ERROR("ReloadForm failed, formRenderer is null"); in ReloadForm() 151 formRenderer_->ReloadForm(formJsInfo.formSrc); in ReloadForm()
|
H A D | form_renderer.cpp | 187 void FormRenderer::ReloadForm(const std::string& url) in ReloadForm() function in OHOS::Ace::FormRenderer 193 uiContent_->ReloadForm(url); in ReloadForm()
|
/foundation/ability/form_fwk/test/unittest/fms_form_render_impl_test/ |
H A D | fms_form_render_impl_test.cpp | 260 * @tc.desc: 1.Verify ReloadForm interface executes as expected.
270 EXPECT_EQ(ERR_APPEXECFWK_FORM_BIND_PROVIDER_FAILED, formRenderImpl.ReloadForm(std::move(formJsInfos), want));
in HWTEST_F() 276 * @tc.desc: 1.Verify ReloadForm interface executes as expected.
289 EXPECT_EQ(RELOAD_FORM_FAILED, formRenderImpl.ReloadForm(std::move(formJsInfos), want));
in HWTEST_F() 295 * @tc.desc: 1.Verify ReloadForm interface executes as expected.
309 EXPECT_EQ(ERR_OK, formRenderImpl.ReloadForm(std::move(formJsInfos), want));
in HWTEST_F() 315 * @tc.desc: 1.Verify ReloadForm interface executes as expected.
330 EXPECT_EQ(ERR_OK, formRenderImpl.ReloadForm(std::move(formJsInfos), want));
in HWTEST_F()
|
/foundation/ability/form_fwk/services/src/ |
H A D | form_render_mgr.cpp | 140 ErrCode FormRenderMgr::ReloadForm( in ReloadForm() function in OHOS::AppExecFwk::FormRenderMgr 155 renderIter->second->ReloadForm(std::move(normalRecords), bundleName, userId); in ReloadForm() 159 sandboxIter->second->ReloadForm(std::move(sandboxRecords), bundleName, userId); in ReloadForm()
|
/foundation/ability/form_fwk/test/unittest/fms_form_render_proxy_test/ |
H A D | fms_form_render_proxy_test.cpp | 143 * @tc.desc: test ReloadForm function and formIds is empty. 152 int result = formRenderProxy_->ReloadForm(std::move(formJsInfos), want); in HWTEST_F()
|
/foundation/ability/form_fwk/interfaces/inner_api/src/ |
H A D | form_render_stub.cpp | 158 result = ReloadForm(std::move(formJsInfos), *want); in HandleReloadForm()
|
H A D | form_render_proxy.cpp | 171 int32_t FormRenderProxy::ReloadForm(const std::vector<FormJsInfo> &&formJsInfos, const Want &want) in ReloadForm() function in OHOS::AppExecFwk::FormRenderProxy
|
/foundation/ability/ability_runtime/test/mock/frameworks_kits_ability_native_test/include/ |
H A D | mock_ui_content.h | 85 MOCK_METHOD1(ReloadForm, void(const std::string &url));
|
/foundation/arkui/ace_engine/test/mock/interfaces/ |
H A D | mock_uicontent.h | 90 MOCK_METHOD1(ReloadForm, void(const std::string& url));
|