Home
last modified time | relevance | path

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

/ohos5.0/foundation/multimedia/media_library/frameworks/services/media_backup_extension/include/report/
H A Dstatistic_processor.h32 if (albumInfoMap.find(info.lPath) == albumInfoMap.end()) { in ParseTotalCount()
35 albumInfoMap[info.lPath].lPath = info.lPath; in ParseTotalCount()
37 albumInfoMap[info.lPath].totalCount = info.count; in ParseTotalCount()
46 if (albumInfoMap.find(info.lPath) == albumInfoMap.end()) { in ParseImageCount()
49 albumInfoMap[info.lPath].lPath = info.lPath; in ParseImageCount()
51 albumInfoMap[info.lPath].imageCount = info.count; in ParseImageCount()
60 if (albumInfoMap.find(info.lPath) == albumInfoMap.end()) { in ParseVideoCount()
63 albumInfoMap[info.lPath].lPath = info.lPath; in ParseVideoCount()
65 albumInfoMap[info.lPath].videoCount = info.count; in ParseVideoCount()
74 if (albumInfoMap.find(info.lPath) == albumInfoMap.end()) { in ParseCloudCount()
[all …]
/ohos5.0/foundation/multimedia/media_library/frameworks/services/media_backup_extension/src/report/
H A Dgallery_media_count_statistic.cpp930 std::unordered_map<std::string, AlbumMediaStatisticInfo> albumInfoMap; in GetAlbumInfoByName() local
932 .ParseTotalCount(albumInfoMap, totalCountInfoList) in GetAlbumInfoByName()
933 .ParseImageCount(albumInfoMap, imageCountInfoList) in GetAlbumInfoByName()
934 .ParseVideoCount(albumInfoMap, videoCountInfoList) in GetAlbumInfoByName()
935 .ParseCloudCount(albumInfoMap, cloudCountInfoList); in GetAlbumInfoByName()
937 for (const auto &iter : albumInfoMap) { in GetAlbumInfoByName()
972 .ParseTotalCount(albumInfoMap, totalCountInfoList) in GetAlbumInfoByLPath()
973 .ParseImageCount(albumInfoMap, imageCountInfoList) in GetAlbumInfoByLPath()
974 .ParseVideoCount(albumInfoMap, videoCountInfoList) in GetAlbumInfoByLPath()
975 .ParseCloudCount(albumInfoMap, cloudCountInfoList); in GetAlbumInfoByLPath()
[all …]
H A Dphotos_count_statistic.cpp578 std::unordered_map<std::string, AlbumMediaStatisticInfo> albumInfoMap; in GetAlbumInfoByName() local
580 .ParseTotalCount(albumInfoMap, totalCountInfoList) in GetAlbumInfoByName()
581 .ParseImageCount(albumInfoMap, imageCountInfoList) in GetAlbumInfoByName()
582 .ParseVideoCount(albumInfoMap, videoCountInfoList) in GetAlbumInfoByName()
583 .ParseCloudCount(albumInfoMap, cloudCountInfoList); in GetAlbumInfoByName()
585 for (const auto &iter : albumInfoMap) { in GetAlbumInfoByName()