| 1762 | } |
| 1763 | |
| 1764 | NameSpace MMKV::defaultNameSpace() { |
| 1765 | if (g_rootDir.empty()) { |
| 1766 | MMKVWarning("MMKV has not been initialized, there's no default NameSpace."); |
| 1767 | return NameSpace(MMKVPath_t()); |
| 1768 | } |
| 1769 | return NameSpace(g_realRootDir); |
| 1770 | } |
| 1771 | |
| 1772 | MMKV *NameSpace::mmkvWithID(const string &mmapID, MMKVMode mode, const string *cryptKey, size_t expectedCapacity, bool aes256) { |
| 1773 | MMKVConfig config; |
nothing calls this directly
no test coverage detected