/ohos5.0/foundation/ability/form_fwk/interfaces/kits/native/include/ |
H A D | form_mgr.h | 661 int32_t EnableForms(const std::string bundleName, const bool enable);
|
/ohos5.0/foundation/ability/form_fwk/test/mock/include/ |
H A D | mock_form_mgr_proxy.h | 103 MOCK_METHOD2(EnableForms, int32_t(const std::string bundleName, const bool enable));
|
H A D | mock_form_mgr_service.h | 116 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 D | form_mgr_proxy_test.cpp | 896 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 D | form_mgr_interface.h | 651 virtual int32_t EnableForms(const std::string bundleName, const bool enable) in EnableForms() function
|
H A D | form_mgr_proxy.h | 599 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 D | fms_form_mgr_service_test2.cpp | 1105 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 D | form_data_mgr.h | 753 void EnableForms(const std::vector<FormRecord> &&formRecords, const bool enable);
|
H A D | form_mgr_service.h | 643 int32_t EnableForms(const std::string bundleName, const bool enable) override;
|
H A D | form_mgr_adapter.h | 641 int32_t EnableForms(const std::string bundleName, const bool enable);
|
/ohos5.0/foundation/ability/form_fwk/test/unittest/form_mgr_test/ |
H A D | form_mgr_test.cpp | 2798 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 D | form_mgr.cpp | 1834 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 D | form_mgr_service.cpp | 1724 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 D | form_mgr_adapter.cpp | 3878 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 D | form_data_mgr.cpp | 2606 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 D | fms_form_mgr_adapter_test2.cpp | 2326 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 D | form_mgr_stub.cpp | 1599 int32_t result = EnableForms(bundleName, enable); in HandleEnableForms()
|
H A D | form_mgr_proxy.cpp | 2320 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 D | fms_form_data_mgr_test.cpp | 3392 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 D | form_mgr_stub_test.cpp | 3002 EXPECT_CALL(*mockFormMgrService, EnableForms(_, _))
|