/foundation/ability/form_fwk/services/include/ |
H A D | form_data_mgr.h | 561 * @param formCount Returns the number of the cast form. 564 int32_t GetCastFormsCount(int32_t &formCount); 568 * @param formCount Returns the number of the temp form. 571 int32_t GetTempFormsCount(int32_t &formCount); 576 * @param formCount Returns the number of the host form. 579 int32_t GetHostFormsCount(const std::string &bundleName, int32_t &formCount);
|
H A D | form_mgr_service.h | 453 * @param formCount Returns the number of the cast or temp form. 456 int32_t GetFormsCount(bool isTempFormFlag, int32_t &formCount) override; 461 * @param formCount Returns the number of the host form. 464 int32_t GetHostFormsCount(std::string &bundleName, int32_t &formCount) override;
|
H A D | form_mgr_adapter.h | 406 * @param formCount Returns the number of the cast or temp form. 409 int32_t GetFormsCount(bool isTempFormFlag, int32_t &formCount); 414 * @param formCount Returns the number of the host form. 417 int32_t GetHostFormsCount(std::string &bundleName, int32_t &formCount);
|
/foundation/ability/form_fwk/interfaces/kits/native/include/ |
H A D | form_mgr.h | 534 * @param formCount Returns the number of the cast or temp form. 537 int32_t GetFormsCount(bool isTempFormFlag, int32_t &formCount); 542 * @param formCount Returns the number of the host form. 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 | 69 MOCK_METHOD2(GetFormsCount, int32_t(bool isTempFormFlag, int32_t &formCount)); 70 MOCK_METHOD2(GetHostFormsCount, int32_t(std::string &bundleName, int32_t &formCount));
|
H A D | mock_form_mgr_service.h | 77 MOCK_METHOD2(GetFormsCount, int32_t(bool isTempFormFlag, int32_t &formCount)); 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 | 340 int32_t FormMgrAdapter::GetFormsCount(bool isTempFormFlag, int32_t &formCount) in GetFormsCount() argument 345 int32_t FormMgrAdapter::GetHostFormsCount(std::string &bundleName, int32_t &formCount) in GetHostFormsCount() argument
|
H A D | fms_form_mgr_service_test2.cpp | 733 int32_t formCount; in HWTEST_F() local 734 EXPECT_EQ(formMgrService.GetFormsCount(isTempFormFlag, formCount), ERR_OK); in HWTEST_F() 749 int32_t formCount; in HWTEST_F() local 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 | 188 int32_t GetFormsCount(bool isTempFormFlag, int32_t &formCount) override 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 | 214 int32_t GetFormsCount(bool isTempFormFlag, int32_t &formCount) override 218 int32_t GetHostFormsCount(std::string &bundleName, int32_t &formCount) override
|
/foundation/ability/form_fwk/interfaces/inner_api/include/ |
H A D | form_mgr_interface.h | 435 * @param formCount Returns the number of the cast or temp form. 438 virtual int32_t GetFormsCount(bool isTempFormFlag, int32_t &formCount) = 0; 443 * @param formCount Returns the number of the host form. 446 virtual int32_t GetHostFormsCount(std::string &bundleName, int32_t &formCount) = 0;
|
H A D | form_mgr_proxy.h | 395 * @param formCount Returns the number of the cast or temp form. 398 int32_t GetFormsCount(bool isTempFormFlag, int32_t &formCount) override; 403 * @param formCount Returns the number of the host form. 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 | 191 int32_t GetFormsCount(bool isTempFormFlag, int32_t &formCount) override 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 | 1715 int32_t formCount = 0; in HWTEST_F() local 1717 int result = FormMgr::GetInstance().GetFormsCount(isTempFormFlag, formCount); in HWTEST_F() 1732 int32_t formCount = 0; in HWTEST_F() local 1734 int result = FormMgr::GetInstance().GetFormsCount(isTempFormFlag, formCount); in HWTEST_F() 1749 int32_t formCount = 0; in HWTEST_F() local 1751 int result = FormMgr::GetInstance().GetHostFormsCount(bundleName, formCount); in HWTEST_F() 1766 int32_t formCount = 0; in HWTEST_F() local 1768 int result = FormMgr::GetInstance().GetHostFormsCount(bundleName, formCount); in HWTEST_F() 1783 int32_t formCount = 0; in HWTEST_F() local 1785 int result = FormMgr::GetInstance().GetHostFormsCount(bundleName, formCount); in HWTEST_F() 3113 int32_t formCount = 0; HWTEST_F() local 3132 int32_t formCount = 0; HWTEST_F() local 4233 int32_t formCount = 0; HWTEST_F() local 4251 int32_t formCount = 0; HWTEST_F() local [all...] |
/foundation/ability/form_fwk/services/src/ |
H A D | form_data_mgr.cpp | 2036 int32_t FormDataMgr::GetTempFormsCount(int32_t &formCount) in GetTempFormsCount() argument 2039 formCount = static_cast<int32_t>(tempForms_.size()); in GetTempFormsCount() 2040 HILOG_DEBUG("current exist %{public}d temp forms in system", formCount); in GetTempFormsCount() 2044 int32_t FormDataMgr::GetCastFormsCount(int32_t &formCount) in GetCastFormsCount() argument 2050 formCount++; in GetCastFormsCount() 2053 HILOG_DEBUG("current exist %{public}d cast forms in system", formCount); in GetCastFormsCount() 2057 int32_t FormDataMgr::GetHostFormsCount(const std::string &bundleName, int32_t &formCount) in GetHostFormsCount() argument 2065 formCount = record.GetFormsCount(); in GetHostFormsCount() 2069 HILOG_DEBUG("current exist %{public}d cast forms in host", formCount); in GetHostFormsCount()
|
H A D | form_mgr_service.cpp | 1493 int32_t FormMgrService::GetFormsCount(bool isTempFormFlag, int32_t &formCount) in GetFormsCount() argument 1496 return FormMgrAdapter::GetInstance().GetFormsCount(isTempFormFlag, formCount); in GetFormsCount() 1499 int32_t FormMgrService::GetHostFormsCount(std::string &bundleName, int32_t &formCount) in GetHostFormsCount() argument 1502 return FormMgrAdapter::GetInstance().GetHostFormsCount(bundleName, formCount); in GetHostFormsCount()
|
H A D | form_mgr_adapter.cpp | 3125 int32_t FormMgrAdapter::GetFormsCount(bool isTempFormFlag, int32_t &formCount) in GetFormsCount() argument 3129 return FormDataMgr::GetInstance().GetTempFormsCount(formCount); in GetFormsCount() 3131 return FormDataMgr::GetInstance().GetCastFormsCount(formCount); in GetFormsCount() 3134 int32_t FormMgrAdapter::GetHostFormsCount(std::string &bundleName, int32_t &formCount) in GetHostFormsCount() argument 3137 return FormDataMgr::GetInstance().GetHostFormsCount(bundleName, formCount); in GetHostFormsCount()
|
/foundation/ability/form_fwk/interfaces/inner_api/src/ |
H A D | form_mgr_stub.cpp | 1162 int32_t formCount = 0; in HandleGetFormsCount() local 1163 int32_t result = GetFormsCount(isTempFormFlag, formCount); in HandleGetFormsCount() 1168 if (!reply.WriteInt32(formCount)) { in HandleGetFormsCount() 1169 HILOG_ERROR("write formCount failed"); in HandleGetFormsCount() 1219 int32_t formCount = 0; in HandleGetHostFormsCount() local 1220 int32_t result = GetHostFormsCount(bundleName, formCount); in HandleGetHostFormsCount() 1225 if (!reply.WriteInt32(formCount)) { in HandleGetHostFormsCount() 1226 HILOG_ERROR("write formCount failed"); in HandleGetHostFormsCount()
|
H A D | form_mgr_proxy.cpp | 1619 int32_t FormMgrProxy::GetFormsCount(bool isTempFormFlag, int32_t &formCount) in GetFormsCount() argument 1640 formCount = reply.ReadInt32(); in GetFormsCount() 1707 int32_t FormMgrProxy::GetHostFormsCount(std::string &bundleName, int32_t &formCount) in GetHostFormsCount() argument 1728 formCount = reply.ReadInt32(); in GetHostFormsCount()
|
/foundation/ability/form_fwk/interfaces/kits/native/src/ |
H A D | form_mgr.cpp | 1458 int32_t FormMgr::GetFormsCount(bool isTempFormFlag, int32_t &formCount) in GetFormsCount() argument 1476 int32_t resultCode = remoteProxy_->GetFormsCount(isTempFormFlag, formCount); in GetFormsCount() 1483 int32_t FormMgr::GetHostFormsCount(std::string &bundleName, int32_t &formCount) in GetHostFormsCount() argument 1506 int32_t resultCode = remoteProxy_->GetHostFormsCount(bundleName, formCount); in GetHostFormsCount()
|
/foundation/ability/form_fwk/test/unittest/fms_form_render_stub_test/ |
H A D | fms_form_render_stub_test.cpp | 351 int32_t GetFormsCount(bool isTempFormFlag, int32_t &formCount) override 355 int32_t GetHostFormsCount(std::string &bundleName, int32_t &formCount) override
|