/foundation/ability/form_fwk/test/unittest/fms_form_data_proxy_record_test/ |
H A D | fms_form_data_proxy_record_test.cpp | 621 std::vector<std::string> subscribedKeys; in HWTEST_F() local 623 formDataProxyRecord.GetFormSubscribeInfo(subscribedKeys, count); in HWTEST_F() 645 std::vector<std::string> subscribedKeys; in HWTEST_F() local 646 formDataProxyRecord.GetFormSubscribeKeys(subscribedKeys, false); in HWTEST_F() 647 EXPECT_EQ(subscribedKeys.size(), 0); in HWTEST_F() 648 subscribedKeys.clear(); in HWTEST_F() 649 formDataProxyRecord.GetFormSubscribeKeys(subscribedKeys, true); in HWTEST_F() 650 EXPECT_EQ(subscribedKeys.size(), 0); in HWTEST_F() 657 subscribedKeys.clear(); in HWTEST_F() 658 formDataProxyRecord.GetFormSubscribeKeys(subscribedKeys, fals in HWTEST_F() 788 std::vector<std::string> subscribedKeys; HWTEST_F() local 851 std::vector<std::string> subscribedKeys; HWTEST_F() local [all...] |
/foundation/ability/form_fwk/services/include/ |
H A D | form_data_proxy_record.h | 50 void GetFormSubscribeInfo(std::vector<std::string> &subscribedKeys, int32_t &count); 99 void GetFormSubscribeKeys(std::vector<std::string> &subscribedKeys, bool isRdbType);
|
H A D | form_data_proxy_mgr.h | 45 void GetFormSubscribeInfo(const int64_t formId, std::vector<std::string> &subscribedKeys, int32_t &count);
|
H A D | form_dump_mgr.h | 93 * @param subscribedKeys Form subscribe key info. 98 const std::vector<std::string> &subscribedKeys, const int64_t &count, std::string &formInfo) const;
|
/foundation/ability/form_fwk/services/src/ |
H A D | form_data_proxy_mgr.cpp | 163 const int64_t formId, std::vector<std::string> &subscribedKeys, int32_t &count) in GetFormSubscribeInfo() 168 search->second->GetFormSubscribeInfo(subscribedKeys, count); in GetFormSubscribeInfo() 162 GetFormSubscribeInfo( const int64_t formId, std::vector<std::string> &subscribedKeys, int32_t &count) GetFormSubscribeInfo() argument
|
H A D | form_data_proxy_record.cpp | 597 void FormDataProxyRecord::GetFormSubscribeInfo(std::vector<std::string> &subscribedKeys, int32_t &count) in GetFormSubscribeInfo() argument 599 GetFormSubscribeKeys(subscribedKeys, true); in GetFormSubscribeInfo() 600 GetFormSubscribeKeys(subscribedKeys, false); in GetFormSubscribeInfo() 837 void FormDataProxyRecord::GetFormSubscribeKeys(std::vector<std::string> &subscribedKeys, bool isRdbType) in GetFormSubscribeKeys() argument 852 auto search = std::find(subscribedKeys.begin(), subscribedKeys.end(), subscribeKey); in GetFormSubscribeKeys() 853 if (search == subscribedKeys.end()) { in GetFormSubscribeKeys() 854 subscribedKeys.emplace_back(subscribeKey); in GetFormSubscribeKeys()
|
H A D | form_dump_mgr.cpp | 199 * @param subscribedKeys Form subscribe key info. 204 const std::vector<std::string> &subscribedKeys, const int64_t &count, std::string &formInfo) const in DumpFormSubscribeInfo() 207 for (size_t i = 0; i < subscribedKeys.size(); i++) { in DumpFormSubscribeInfo() 208 formInfo += " [" + subscribedKeys[i] + "]"; in DumpFormSubscribeInfo() 203 DumpFormSubscribeInfo( const std::vector<std::string> &subscribedKeys, const int64_t &count, std::string &formInfo) const DumpFormSubscribeInfo() argument
|
H A D | form_mgr_adapter.cpp | 1294 std::vector<std::string> subscribedKeys; in DumpFormInfoByFormId() local 1297 FormDataProxyMgr::GetInstance().GetFormSubscribeInfo(formId, subscribedKeys, count); in DumpFormInfoByFormId() 1298 FormDumpMgr::GetInstance().DumpFormSubscribeInfo(subscribedKeys, count, formInfo); in DumpFormInfoByFormId()
|
/foundation/ability/form_fwk/test/fuzztest/formsupplycallback_fuzzer/ |
H A D | formsupplycallback_fuzzer.cpp | 97 std::vector<std::string> subscribedKeys; in DoSomethingInterestingWithMyAPI() local 99 formDumpMgr.DumpFormSubscribeInfo(subscribedKeys, count, formInfo); in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/form_fwk/test/unittest/fms_form_share_mgr_test/ |
H A D | fms_form_share_mgr_test.cpp | 2152 std::vector<std::string> subscribedKeys; in HWTEST_F() local 2157 formDumpMgr->DumpFormSubscribeInfo(subscribedKeys, count, formInfo); in HWTEST_F()
|