Home
last modified time | relevance | path

Searched refs:bundleNameUidMap (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/resourceschedule/device_usage_statistics/test/unittest/
H A Dbundle_active_usage_database_test.cpp194 std::map<std::string, int32_t> bundleNameUidMap; variable
195 bundleNameUidMap["111"] = 111;
196 bundleNameUidMap["222"] = 222;
199 database->UpdateOldDataUid(store, "test", 100, bundleNameUidMap);
/ohos5.0/foundation/resourceschedule/device_usage_statistics/services/common/src/
H A Dbundle_active_usage_database.cpp496 map<string, int32_t> bundleNameUidMap; in SupportAppTwin() local
512 UpdateOldDataUid(rdbStore, tableName, userId, bundleNameUidMap); in SupportAppTwin()
529 const string& tableName, const int32_t userId, map<string, int32_t>& bundleNameUidMap) in UpdateOldDataUid() argument
546 auto it = bundleNameUidMap.find(bundleNameUserIdKey); in UpdateOldDataUid()
547 if (it == bundleNameUidMap.end()) { in UpdateOldDataUid()
551 bundleNameUidMap[bundleNameUserIdKey] = uid; in UpdateOldDataUid()
/ohos5.0/foundation/resourceschedule/device_usage_statistics/services/common/include/
H A Dbundle_active_usage_database.h136 const int32_t userId, std::map<std::string, int32_t>& bundleNameUidMap);