Home
last modified time | relevance | path

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

/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/
H A Dinner_bundle_info.cpp3309 std::unordered_map<std::string, std::string> moduleNameMap; in GetAllRequestPermissions() local
3318 if (moduleNameMap.find(item.moduleName) == moduleNameMap.end()) { in GetAllRequestPermissions()
3319 moduleNameMap[item.moduleName] = info.second.distro.moduleType; in GetAllRequestPermissions()
3324 InnerProcessRequestPermissions(moduleNameMap, requestPermissions); in GetAllRequestPermissions()
3330 const std::unordered_map<std::string, std::string> &moduleNameMap, in InnerProcessRequestPermissions() argument
3334 [&moduleNameMap](RequestPermission reqPermA, RequestPermission reqPermB) { in InnerProcessRequestPermissions()
3339 auto moduleTypeA = moduleNameMap.find(reqPermA.moduleName); in InnerProcessRequestPermissions()
3340 if (moduleTypeA == moduleNameMap.end()) { in InnerProcessRequestPermissions()
3343 auto moduleTypeB = moduleNameMap.find(reqPermB.moduleName); in InnerProcessRequestPermissions()
3344 if (moduleTypeB == moduleNameMap.end()) { in InnerProcessRequestPermissions()
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_data_storage_test/
H A Dbms_bundle_data_storage_database_test.cpp3228 std::unordered_map<std::string, std::string> moduleNameMap; variable
3229 moduleNameMap["entry"] = "entry";
3230 moduleNameMap["feature"] = "feature";
3233 innerBundleInfo.InnerProcessRequestPermissions(moduleNameMap, requestPermissions);
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/
H A Dinner_bundle_info.h2245 const std::unordered_map<std::string, std::string> &moduleNameMap,