Home
last modified time | relevance | path

Searched refs:EnableForms (Results 1 – 20 of 20) sorted by relevance

/ohos5.0/foundation/ability/form_fwk/interfaces/kits/native/include/
H A Dform_mgr.h661 int32_t EnableForms(const std::string bundleName, const bool enable);
/ohos5.0/foundation/ability/form_fwk/test/mock/include/
H A Dmock_form_mgr_proxy.h103 MOCK_METHOD2(EnableForms, int32_t(const std::string bundleName, const bool enable));
H A Dmock_form_mgr_service.h116 MOCK_METHOD2(EnableForms, ErrCode(const std::string bundleName, const bool enable));
/ohos5.0/foundation/ability/form_fwk/test/unittest/form_mgr_proxy_test/
H A Dform_mgr_proxy_test.cpp896 EXPECT_EQ(formMgrProxy->EnableForms(bundleName, true), ERR_OK);
897 EXPECT_EQ(formMgrProxy->EnableForms(bundleName, false), ERR_OK);
/ohos5.0/foundation/ability/form_fwk/interfaces/inner_api/include/
H A Dform_mgr_interface.h651 virtual int32_t EnableForms(const std::string bundleName, const bool enable) in EnableForms() function
H A Dform_mgr_proxy.h599 int32_t EnableForms(const std::string bundleName, const bool enable) override;
/ohos5.0/foundation/ability/form_fwk/test/unittest/fms_form_mgr_service_test/
H A Dfms_form_mgr_service_test2.cpp1105 EXPECT_EQ(formMgrService.EnableForms(bundleName, true), ERR_APPEXECFWK_FORM_NOT_EXIST_ID);
1106 EXPECT_EQ(formMgrService.EnableForms(bundleName, false), ERR_APPEXECFWK_FORM_NOT_EXIST_ID);
/ohos5.0/foundation/ability/form_fwk/services/include/
H A Dform_data_mgr.h753 void EnableForms(const std::vector<FormRecord> &&formRecords, const bool enable);
H A Dform_mgr_service.h643 int32_t EnableForms(const std::string bundleName, const bool enable) override;
H A Dform_mgr_adapter.h641 int32_t EnableForms(const std::string bundleName, const bool enable);
/ohos5.0/foundation/ability/form_fwk/test/unittest/form_mgr_test/
H A Dform_mgr_test.cpp2798 int32_t result = FormMgr::GetInstance().EnableForms(bundleName, true);
2812 EXPECT_CALL(*mockProxy, EnableForms(_, _))
2815 int32_t result = FormMgr::GetInstance().EnableForms(bundleName, true);
2830 int32_t result = FormMgr::GetInstance().EnableForms(bundleName, true);
4544 EXPECT_CALL(*mockProxy, EnableForms(_, _))
4547 int32_t result = FormMgr::GetInstance().EnableForms(bundleName, true);
4563 int32_t result = FormMgr::GetInstance().EnableForms(bundleName, true);
/ohos5.0/foundation/ability/form_fwk/interfaces/kits/native/src/
H A Dform_mgr.cpp1834 int32_t FormMgr::EnableForms(const std::string bundleName, const bool enable) in EnableForms() function in OHOS::AppExecFwk::FormMgr
1855 ErrCode resultCode = remoteProxy_->EnableForms(bundleName, enable); in EnableForms()
/ohos5.0/foundation/ability/form_fwk/services/src/
H A Dform_mgr_service.cpp1724 int32_t FormMgrService::EnableForms(const std::string bundleName, const bool enable) in EnableForms() function in OHOS::AppExecFwk::FormMgrService
1731 return FormMgrAdapter::GetInstance().EnableForms(bundleName, enable); in EnableForms()
H A Dform_mgr_adapter.cpp3878 int32_t FormMgrAdapter::EnableForms(const std::string bundleName, const bool enable) in EnableForms() function in OHOS::AppExecFwk::FormMgrAdapter
3925 FormDataMgr::GetInstance().EnableForms(std::move(formInfos), enable); in EnableForms()
H A Dform_data_mgr.cpp2606 void FormDataMgr::EnableForms(const std::vector<FormRecord> &&formRecords, const bool enable) in EnableForms() function in OHOS::AppExecFwk::FormDataMgr
/ohos5.0/foundation/ability/form_fwk/test/unittest/fms_form_mgr_adapter_test/
H A Dfms_form_mgr_adapter_test2.cpp2326 EXPECT_EQ(formMgrAdapter.EnableForms(bundleName, true), ERR_APPEXECFWK_FORM_NOT_EXIST_ID);
2327 EXPECT_EQ(formMgrAdapter.EnableForms(bundleName, false), ERR_APPEXECFWK_FORM_NOT_EXIST_ID);
/ohos5.0/foundation/ability/form_fwk/interfaces/inner_api/src/
H A Dform_mgr_stub.cpp1599 int32_t result = EnableForms(bundleName, enable); in HandleEnableForms()
H A Dform_mgr_proxy.cpp2320 int32_t FormMgrProxy::EnableForms(const std::string bundleName, const bool enable) in EnableForms() function in OHOS::AppExecFwk::FormMgrProxy
/ohos5.0/foundation/ability/form_fwk/test/unittest/fms_form_data_mgr_test/
H A Dfms_form_data_mgr_test.cpp3392 formDataMgr_.EnableForms(std::move(formRecords), true);
3393 formDataMgr_.EnableForms(std::move(formRecords), false);
/ohos5.0/foundation/ability/form_fwk/test/unittest/form_mgr_stub_test/
H A Dform_mgr_stub_test.cpp3002 EXPECT_CALL(*mockFormMgrService, EnableForms(_, _))