| 745 | } |
| 746 | |
| 747 | static std::string LocalStoragePath(uint32_t accountId, uint32_t appId) { |
| 748 | return g_localRoot + "storage" + kPathSepStr + std::to_string(accountId) + kPathSepStr + |
| 749 | std::to_string(appId) + kPathSepStr; |
| 750 | } |
| 751 | |
| 752 | static std::unordered_set<uint32_t> EnumerateLocalAppIds(uint32_t accountId) { |
| 753 | std::unordered_set<uint32_t> appIds; |
no outgoing calls
no test coverage detected