/foundation/ability/form_fwk/interfaces/kits/native/include/ |
H A D | form_mgr.h | 545 int32_t GetHostFormsCount(std::string &bundleName, int32_t &formCount);
|
/foundation/ability/form_fwk/test/mock/include/ |
H A D | mock_form_mgr_proxy.h | 70 MOCK_METHOD2(GetHostFormsCount, int32_t(std::string &bundleName, int32_t &formCount));
|
H A D | mock_form_mgr_service.h | 78 MOCK_METHOD2(GetHostFormsCount, int32_t(std::string &bundleName, int32_t &formCount));
|
/foundation/ability/form_fwk/test/unittest/fms_form_mgr_service_test/ |
H A D | mock_form_mgr_adapter.cpp | 345 int32_t FormMgrAdapter::GetHostFormsCount(std::string &bundleName, int32_t &formCount) in GetHostFormsCount() function in OHOS::AppExecFwk::FormMgrAdapter
|
H A D | fms_form_mgr_service_test2.cpp | 750 EXPECT_EQ(formMgrService.GetHostFormsCount(bundleName, formCount), ERR_OK); in HWTEST_F()
|
/foundation/ability/dmsfwk/services/dtbschedmgr/test/unittest/ |
H A D | mock_form_mgr_service.h | 192 int32_t GetHostFormsCount(std::string &bundleName, int32_t &formCount) override
|
/foundation/ability/ability_runtime/test/unittest/frameworks_kits_appkit_native_test/ |
H A D | form_extension_context_mock_test.h | 218 int32_t GetHostFormsCount(std::string &bundleName, int32_t &formCount) override
|
/foundation/ability/form_fwk/services/include/ |
H A D | form_data_mgr.h | 579 int32_t GetHostFormsCount(const std::string &bundleName, int32_t &formCount);
|
H A D | form_mgr_service.h | 464 int32_t GetHostFormsCount(std::string &bundleName, int32_t &formCount) override;
|
H A D | form_mgr_adapter.h | 417 int32_t GetHostFormsCount(std::string &bundleName, int32_t &formCount);
|
/foundation/ability/form_fwk/interfaces/inner_api/include/ |
H A D | form_mgr_interface.h | 446 virtual int32_t GetHostFormsCount(std::string &bundleName, int32_t &formCount) = 0;
|
H A D | form_mgr_proxy.h | 406 int32_t GetHostFormsCount(std::string &bundleName, int32_t &formCount) override;
|
/foundation/ability/form_fwk/test/fuzztest/formmgrstub_fuzzer/ |
H A D | formmgrstub_fuzzer.cpp | 195 int32_t GetHostFormsCount(std::string &bundleName, int32_t &formCount) override
|
/foundation/ability/form_fwk/test/unittest/form_mgr_test/ |
H A D | form_mgr_test.cpp | 1742 * @tc.desc: Verify GetHostFormsCount 1751 int result = FormMgr::GetInstance().GetHostFormsCount(bundleName, formCount); in HWTEST_F() 1759 * @tc.desc: Verify GetHostFormsCount 1768 int result = FormMgr::GetInstance().GetHostFormsCount(bundleName, formCount); in HWTEST_F() 1776 * @tc.desc: Verify GetHostFormsCount 1785 int result = FormMgr::GetInstance().GetHostFormsCount(bundleName, formCount); in HWTEST_F() 3122 * @tc.desc: Verify GetHostFormsCount 3128 EXPECT_CALL(*mockProxy, GetHostFormsCount(_, _)) in HWTEST_F() 3134 int result = FormMgr::GetInstance().GetHostFormsCount(bundleName, formCount); in HWTEST_F() 4244 * @tc.desc: Verify GetHostFormsCount [all...] |
/foundation/ability/form_fwk/interfaces/kits/native/src/ |
H A D | form_mgr.cpp | 1483 int32_t FormMgr::GetHostFormsCount(std::string &bundleName, int32_t &formCount) in GetHostFormsCount() function in OHOS::AppExecFwk::FormMgr 1506 int32_t resultCode = remoteProxy_->GetHostFormsCount(bundleName, formCount); in GetHostFormsCount()
|
/foundation/ability/form_fwk/services/src/ |
H A D | form_mgr_service.cpp | 1499 int32_t FormMgrService::GetHostFormsCount(std::string &bundleName, int32_t &formCount) in GetHostFormsCount() function in OHOS::AppExecFwk::FormMgrService 1502 return FormMgrAdapter::GetInstance().GetHostFormsCount(bundleName, formCount); in GetHostFormsCount()
|
H A D | form_mgr_adapter.cpp | 3134 int32_t FormMgrAdapter::GetHostFormsCount(std::string &bundleName, int32_t &formCount) in GetHostFormsCount() function in OHOS::AppExecFwk::FormMgrAdapter 3137 return FormDataMgr::GetInstance().GetHostFormsCount(bundleName, formCount); in GetHostFormsCount()
|
H A D | form_data_mgr.cpp | 2057 int32_t FormDataMgr::GetHostFormsCount(const std::string &bundleName, int32_t &formCount) in GetHostFormsCount() function in OHOS::AppExecFwk::FormDataMgr
|
/foundation/ability/form_fwk/test/unittest/fms_form_mgr_proxy_test/ |
H A D | fms_form_mgr_proxy_test.cpp | 1973 * @tc.desc: test GetHostFormsCount function 1987 int32_t result = proxy->GetHostFormsCount(bundleName, count); in HWTEST_F() 1993 * @tc.desc: test GetHostFormsCount function 2009 int32_t result = proxy->GetHostFormsCount(bundleName, count); in HWTEST_F() 2015 * @tc.desc: test GetHostFormsCount function 2030 int32_t result = proxy->GetHostFormsCount(bundleName, count); in HWTEST_F()
|
/foundation/ability/form_fwk/test/unittest/fms_form_render_stub_test/ |
H A D | fms_form_render_stub_test.cpp | 355 int32_t GetHostFormsCount(std::string &bundleName, int32_t &formCount) override
|
/foundation/ability/form_fwk/interfaces/inner_api/src/ |
H A D | form_mgr_proxy.cpp | 1707 int32_t FormMgrProxy::GetHostFormsCount(std::string &bundleName, int32_t &formCount) in GetHostFormsCount() function in OHOS::AppExecFwk::FormMgrProxy
|
H A D | form_mgr_stub.cpp | 1220 int32_t result = GetHostFormsCount(bundleName, formCount); in HandleGetHostFormsCount()
|
/foundation/ability/form_fwk/test/unittest/form_mgr_stub_test/ |
H A D | form_mgr_stub_test.cpp | 2950 EXPECT_CALL(*mockFormMgrService, GetHostFormsCount(_, _)) in HWTEST_F()
|