Home
last modified time | relevance | path

Searched refs:DeleteForm (Results 1 - 25 of 47) sorted by relevance

12

/foundation/ability/form_fwk/test/unittest/frs_form_render_record_test/
H A Dmock_form_renderer_group.cpp47 void FormRendererGroup::DeleteForm() in DeleteForm() function in OHOS::Ace::FormRendererGroup
52 void FormRendererGroup::DeleteForm(const std::string& compId) in DeleteForm() function in OHOS::Ace::FormRendererGroup
/foundation/ability/form_fwk/test/unittest/fms_form_mgr_delete_form_test/
H A Dfms_form_mgr_delete_form_test.cpp100 * SubFunction: DeleteForm Function
101 * FunctionPoints: FormMgr DeleteForm interface
137 EXPECT_EQ(ERR_OK, FormMgr::GetInstance().DeleteForm(formId, token_)); in HWTEST_F()
167 * SubFunction: DeleteForm Function
168 * FunctionPoints: FormMgr DeleteForm interface
192 EXPECT_EQ(ERR_OK, FormMgr::GetInstance().DeleteForm(formId, token_)); in HWTEST_F()
218 * SubFunction: DeleteForm Function
219 * FunctionPoints: FormMgr DeleteForm interface
227 EXPECT_EQ(ERR_APPEXECFWK_FORM_INVALID_FORM_ID, FormMgr::GetInstance().DeleteForm(0, token_)); in HWTEST_F()
229 EXPECT_EQ(ERR_APPEXECFWK_FORM_INVALID_PARAM, FormMgr::GetInstance().DeleteForm(12 in HWTEST_F()
[all...]
/foundation/arkui/ace_engine/interfaces/inner_api/form_render/include/
H A Dform_renderer_group.h77 void DeleteForm();
78 void DeleteForm(const std::string& compId);
/foundation/arkui/ace_engine/interfaces/inner_api/form_render/src/
H A Dform_renderer_group.cpp43 DeleteForm(); in ~FormRendererGroup()
174 void FormRendererGroup::DeleteForm(const std::string& compId) in DeleteForm() function in OHOS::Ace::FormRendererGroup
176 HILOG_INFO("DeleteForm compId is %{public}s, currentCompId is %{public}s, formRequests size is %{public}s.", in DeleteForm()
192 DeleteForm(); in DeleteForm()
225 void FormRendererGroup::DeleteForm() in DeleteForm() function in OHOS::Ace::FormRendererGroup
/foundation/arkui/ace_engine/test/unittest/interfaces/
H A Dform_render_group_test.cpp101 * @tc.desc: Test DeleteForm() function.
113 group->DeleteForm(id); in HWTEST_F()
118 * @tc.desc: Test DeleteForm() function.
134 group->DeleteForm(); in HWTEST_F()
266 * @tc.desc: Test DeleteForm() function.
280 group->DeleteForm(compId); in HWTEST_F()
289 * @tc.desc: Test DeleteForm() function.
307 group->DeleteForm(compId); in HWTEST_F()
316 * @tc.desc: Test DeleteForm() function.
334 group->DeleteForm(compI in HWTEST_F()
[all...]
H A Dform_render_test.cpp65 * @tc.desc: test AddForm -> UpdateForm -> ReloadForm -> DeleteForm(comp_id) -> DeleteForm
160 formRendererGroup->DeleteForm(FORM_COMPONENT_ID_3); in HWTEST_F()
168 formRendererGroup->DeleteForm(FORM_COMPONENT_ID_1); in HWTEST_F()
174 formRendererGroup->DeleteForm(); in HWTEST_F()
/foundation/ability/form_fwk/test/fuzztest/formprovidercaller_fuzzer/
H A Dformprovidercaller_fuzzer.cpp53 formProviderCaller.DeleteForm(formId); in DoSomethingInterestingWithMyAPI()
/foundation/ability/form_fwk/interfaces/kits/native/include/
H A Dform_provider_caller.h65 void DeleteForm(int64_t formId);
H A Dform_mgr.h108 int DeleteForm(const int64_t formId, const sptr<IRemoteObject> &callerToken);
/foundation/ability/form_fwk/interfaces/kits/native/src/
H A Dform_provider_caller.cpp46 void FormProviderCaller::DeleteForm(int64_t formId) in DeleteForm() function in OHOS::AppExecFwk::FormProviderCaller
H A Dform_caller_mgr.cpp154 (*iter)->DeleteForm(formId); in RemoveFormProviderCaller()
/foundation/ability/form_fwk/test/fuzztest/formmgr_fuzzer/
H A Dformmgr_fuzzer.cpp49 formMgr.DeleteForm(formId, callerToken); in DoSomethingInterestingWithMyAPI()
/foundation/ability/form_fwk/test/fuzztest/formmgradapter_fuzzer/
H A Dformmgradapter_fuzzer.cpp47 formMgrAdapter.DeleteForm(formId, callerToken); in DoSomethingInterestingWithMyAPI()
/foundation/ability/form_fwk/frameworks/js/napi/formHost/
H A Dnative_module.cpp46 OHOS::AbilityRuntime::BindNativeFunction(env, exports, "deleteForm", moduleName, NapiFormHost::DeleteForm); in NapiFormHostInit()
H A Dnapi_form_host.h86 static napi_value DeleteForm(napi_env env, napi_callback_info info);
/foundation/ability/ability_runtime/test/mock/frameworks_kits_ability_native_test/include/
H A Dmock_form_mgr_service.h82 int DeleteForm(const int64_t formId, const sptr<IRemoteObject>& callerToken) in DeleteForm() function in OHOS::AppExecFwk::MockFormMgrService
/foundation/ability/form_fwk/test/benchmarktest/form_manager_test/
H A Dform_manager_test.cpp168 FormMgr::GetInstance().DeleteForm(formId, formHostClient);
/foundation/ability/form_fwk/test/fuzztest/formmgrservice_fuzzer/
H A Dformmgrservice_fuzzer.cpp48 formMgrService.DeleteForm(formId, callerToken); in DoSomethingInterestingWithMyAPI()
/foundation/ability/form_fwk/test/fuzztest/formmgrproxy_fuzzer/
H A Dformmgrproxy_fuzzer.cpp48 formMgrProxy.DeleteForm(formId, callerToken); in DoSomethingInterestingWithMyAPI()
/foundation/ability/form_fwk/test/mock/include/
H A Dmock_form_mgr_proxy.h64 MOCK_METHOD2(DeleteForm, int(const int64_t formId, const sptr<IRemoteObject> &callerToken));
H A Dmock_form_mgr_service.h30 MOCK_METHOD2(DeleteForm, int(const int64_t formId, const sptr<IRemoteObject> &callerToken));
/foundation/ability/form_fwk/test/unittest/fms_form_mgr_service_test/
H A Dmock_form_mgr_adapter.cpp177 int FormMgrAdapter::DeleteForm(const int64_t formId, const sptr<IRemoteObject> &callerToken) in DeleteForm() function in OHOS::AppExecFwk::FormMgrAdapter
179 GTEST_LOG_(INFO) << "DeleteForm called " << g_deleteForm; in DeleteForm()
/foundation/ability/form_fwk/test/unittest/form_provider_caller_test/
H A Dform_provider_caller_test.cpp285 * @tc.desc: text DeleteForm function and callerToken is not nullptr.
297 formProviderCaller.DeleteForm(formJsInfo.formId); in HWTEST_F()
/foundation/ability/dmsfwk/services/dtbschedmgr/test/unittest/
H A Dmock_form_mgr_service.h45 int32_t DeleteForm(const int64_t formId, const sptr<IRemoteObject> &callerToken) override
/foundation/ability/ability_runtime/test/unittest/frameworks_kits_appkit_native_test/
H A Dform_extension_context_mock_test.h47 int DeleteForm(const int64_t formId, const sptr<IRemoteObject> &callerToken) override

Completed in 12 milliseconds

12