/foundation/ability/form_fwk/services/include/ |
H A D | form_id_key.h | 23 struct FormIdKey { struct 25 FormIdKey(std::string &bundleName, std::string &abilityName) in FormIdKey() function 37 bool operator== (const FormIdKey &formIdKey) const in operator ==() 50 bool operator< (const FormIdKey &formIdKey) const in operator <()
|
H A D | form_db_cache.h | 104 ErrCode GetNoHostDBForms(const int uid, std::map<FormIdKey, std::set<int64_t>> &noHostFormDBList, 130 std::map<FormIdKey, std::set<int64_t>> &noHostDBFormsMap, 139 void BatchDeleteNoHostDBForms(int32_t callingUid, std::map<FormIdKey, std::set<int64_t>> &noHostDBFormsMap,
|
H A D | form_event_util.h | 48 static void BatchDeleteNoHostTempForms(const int uid, std::map<FormIdKey, std::set<int64_t>> &noHostTempFormsMap, 54 static void BatchDeleteNoHostDBForms(const int uid, std::map<FormIdKey, std::set<int64_t>> &noHostFormDbMap,
|
H A D | form_data_mgr.h | 368 void GetNoHostTempForms(const int uid, std::map<FormIdKey, std::set<int64_t>> &noHostTempFormsMap, 392 std::map<FormIdKey, std::set<int64_t>> &noHostTempFormsMap, 401 void BatchDeleteNoHostTempForms(int32_t callingUid, std::map<FormIdKey, std::set<int64_t>> &noHostTempFormsMap,
|
/foundation/ability/form_fwk/services/src/ |
H A D | form_db_cache.cpp | 238 ErrCode FormDbCache::GetNoHostDBForms(const int uid, std::map<FormIdKey, in GetNoHostDBForms() 246 FormIdKey formIdKey(dbInfo.bundleName, dbInfo.abilityName); in GetNoHostDBForms() 315 std::map<FormIdKey, std::set<int64_t>> &noHostDBFormsMap, in GetNoHostInvalidDBForms() 338 FormIdKey formIdKey(formRecord.bundleName, formRecord.abilityName); in GetNoHostInvalidDBForms() 361 void FormDbCache::BatchDeleteNoHostDBForms(int32_t callingUid, std::map<FormIdKey, std::set<int64_t>> &noHostDBFormsMap, in BatchDeleteNoHostDBForms() 364 std::set<FormIdKey> removableModuleSet; in BatchDeleteNoHostDBForms() 367 FormIdKey formIdKey = element.first; in BatchDeleteNoHostDBForms() 376 FormIdKey removableModuleFormIdKey(dbInfo.bundleName, dbInfo.moduleName); in BatchDeleteNoHostDBForms() 385 for (const FormIdKey &item : removableModuleSet) { in BatchDeleteNoHostDBForms() 406 std::map<FormIdKey, st in DeleteInvalidDBForms() [all...] |
H A D | form_event_util.cpp | 283 std::map<FormIdKey, std::set<int64_t>> noHostFormDbMap; in ClearFormDBRecordData() 304 std::map<FormIdKey, std::set<int64_t>> noHostTempFormsMap; in ClearTempFormRecordData() 315 void FormEventUtil::BatchDeleteNoHostTempForms(const int uid, std::map<FormIdKey, in BatchDeleteNoHostTempForms() 320 FormIdKey formIdKey = element.first; in BatchDeleteNoHostTempForms() 499 void FormEventUtil::BatchDeleteNoHostDBForms(const int uid, std::map<FormIdKey, std::set<int64_t>> &noHostFormDbMap, in BatchDeleteNoHostDBForms() 502 std::set<FormIdKey> removableModuleSet; in BatchDeleteNoHostDBForms() 505 FormIdKey formIdKey = element.first; in BatchDeleteNoHostDBForms() 526 FormIdKey removableModuleFormIdKey(dbInfo.bundleName, dbInfo.moduleName); in BatchDeleteNoHostDBForms() 535 for (const FormIdKey &item : removableModuleSet) { in BatchDeleteNoHostDBForms()
|
H A D | form_data_mgr.cpp | 1303 const int uid, std::map<FormIdKey, in GetNoHostTempForms() 1326 FormIdKey formIdKey(itFormRecord->second.bundleName, itFormRecord->second.abilityName); in GetNoHostTempForms() 1639 std::map<FormIdKey, std::set<int64_t>> &noHostTempFormsMap, in GetNoHostInvalidTempForms() 1664 FormIdKey formIdKey(formRecord.bundleName, formRecord.abilityName); in GetNoHostInvalidTempForms() 1685 void FormDataMgr::BatchDeleteNoHostTempForms(int32_t callingUid, std::map<FormIdKey, in BatchDeleteNoHostTempForms() 1689 std::set<FormIdKey> removableModuleSet; in BatchDeleteNoHostTempForms() 1691 FormIdKey formIdKey = noHostTempForm.first; in BatchDeleteNoHostTempForms() 1729 std::map<FormIdKey, std::set<int64_t>> noHostTempFormsMap {}; in DeleteInvalidTempForms()
|
/foundation/ability/form_fwk/test/unittest/fms_form_event_util_test/ |
H A D | mock_form_db_cache.cpp | 71 ErrCode FormDbCache::GetNoHostDBForms(const int uid, std::map<FormIdKey,
in GetNoHostDBForms() 80 FormIdKey formIdKey(bundleName[i], abilityName[i]);
in GetNoHostDBForms()
|
H A D | fms_form_event_util_test.cpp | 533 std::map<FormIdKey, std::set<int64_t>> noHostTempFormsMap;
in HWTEST_F() 538 FormIdKey formIdKey(bundleName[i], abilityName[i]);
in HWTEST_F() 978 std::map<FormIdKey, std::set<int64_t>> noHostFormDbMap;
in HWTEST_F() 984 FormIdKey formIdKey(bundleName[i], moduleName[i]);
in HWTEST_F() 1005 std::map<FormIdKey, std::set<int64_t>> noHostFormDbMap;
in HWTEST_F() 1011 FormIdKey formIdKey(bundleName[i], moduleName[i]);
in HWTEST_F() 1033 std::map<FormIdKey, std::set<int64_t>> noHostFormDbMap;
in HWTEST_F() 1039 FormIdKey formIdKey(bundleName[i], moduleName[i]);
in HWTEST_F() 1062 std::map<FormIdKey, std::set<int64_t>> noHostTempFormsMap;
in HWTEST_F() 1067 FormIdKey formIdKe in HWTEST_F() [all...] |
H A D | mock_form_data_mgr.cpp | 128 const int uid, std::map<FormIdKey,
in GetNoHostTempForms() 136 FormIdKey formIdKey(bundleName, abilityName);
in GetNoHostTempForms()
|
/foundation/ability/form_fwk/test/unittest/fms_form_mgr_message_event_test/ |
H A D | fms_form_mgr_message_event_test.cpp | 408 std::map<FormIdKey, std::set<int64_t>> noHostFormDBList; in HWTEST_F() 427 std::map<FormIdKey, std::set<int64_t>> noHostFormDBList; in HWTEST_F() 506 std::map<FormIdKey, std::set<int64_t>> noHostDBFormsMap; in HWTEST_F() 527 std::map<FormIdKey, std::set<int64_t>> noHostDBFormsMap; in HWTEST_F() 548 std::map<FormIdKey, std::set<int64_t>> noHostDBFormsMap; in HWTEST_F() 572 std::map<FormIdKey, std::set<int64_t>> noHostDBFormsMap; in HWTEST_F() 597 std::map<FormIdKey, std::set<int64_t>> noHostDBFormsMap; in HWTEST_F() 632 std::map<FormIdKey, std::set<int64_t>> noHostDBFormsMap; in HWTEST_F() 633 FormIdKey formIdKey(formDBInfo.bundleName, formDBInfo.abilityName); in HWTEST_F() 656 std::map<FormIdKey, st in HWTEST_F() [all...] |
/foundation/ability/form_fwk/test/fuzztest/formsyseventreceiver_fuzzer/ |
H A D | formsyseventreceiver_fuzzer.cpp | 75 FormIdKey formIdKey(bundleName, abilityName); in DoSomethingInterestingWithMyAPI() 78 std::map<FormIdKey, std::set<int64_t>> noHostFormDbMap; in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/form_fwk/test/fuzztest/formdatamgrfour_fuzzer/ |
H A D | formdatamgrfour_fuzzer.cpp | 53 FormIdKey formIdKey(bundleName, abilityName); in DoSomethingInterestingWithMyAPI() 54 std::map<FormIdKey, std::set<int64_t>> noHostTempFormsMap; in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/form_fwk/test/fuzztest/formdbcacheannex_fuzzer/ |
H A D | formdbcacheannex_fuzzer.cpp | 53 FormIdKey formIdKey(bundleName, abilityName); in DoSomethingInterestingWithMyAPI() 54 std::map<FormIdKey, std::set<int64_t>> noHostFormDBList; in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/form_fwk/test/fuzztest/formdatamgrthree_fuzzer/ |
H A D | formdatamgrthree_fuzzer.cpp | 60 std::map<FormIdKey, std::set<int64_t>> noHostTempFormsMap; in DoSomethingInterestingWithMyAPI() 63 FormIdKey formIdKey(bundleName, abilityName); in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/form_fwk/test/unittest/fms_form_db_record_test/ |
H A D | fms_form_db_record_test.cpp | 273 std::map<FormIdKey, std::set<int64_t>> noHostFormDBList; in HWTEST_F() 321 std::map<FormIdKey, std::set<int64_t>> noHostFormDBList; in HWTEST_F()
|
/foundation/ability/form_fwk/test/unittest/fms_form_share_mgr_test/ |
H A D | fms_form_share_mgr_test.cpp | 2294 std::map<FormIdKey, std::set<int64_t>> noHostTempFormsMap; in HWTEST_F() 2318 std::map<FormIdKey, std::set<int64_t>> noHostTempFormsMap; in HWTEST_F() 2342 std::map<FormIdKey, std::set<int64_t>> noHostTempFormsMap; in HWTEST_F() 2725 std::map<FormIdKey, std::set<int64_t>> noHostTempFormsMap; in HWTEST_F() 2744 std::map<FormIdKey, std::set<int64_t>> noHostTempFormsMap; in HWTEST_F() 2770 std::map<FormIdKey, std::set<int64_t>> noHostTempFormsMap; in HWTEST_F() 2796 std::map<FormIdKey, std::set<int64_t>> noHostTempFormsMap; in HWTEST_F() 2822 std::map<FormIdKey, std::set<int64_t>> noHostTempFormsMap; in HWTEST_F() 2848 std::map<FormIdKey, std::set<int64_t>> noHostTempFormsMap; in HWTEST_F() 2877 std::map<FormIdKey, st in HWTEST_F() [all...] |
/foundation/ability/form_fwk/test/unittest/fms_form_data_mgr_test/ |
H A D | fms_form_data_mgr_test.cpp | 3704 std::map<FormIdKey, std::set<int64_t>> noHostTempFormsMap; in HWTEST_F() 3728 FormIdKey formIdKey(record.bundleName, record.abilityName); in HWTEST_F() 3730 std::map<FormIdKey, std::set<int64_t>> noHostTempFormsMap; in HWTEST_F() 3757 FormIdKey formIdKey(record.bundleName, record.abilityName); in HWTEST_F() 3759 std::map<FormIdKey, std::set<int64_t>> noHostTempFormsMap; in HWTEST_F()
|