MCPcopy Create free account
hub / github.com/Tencent/MMKV / removeStorage

Function removeStorage

Android/MMKV/mmkv/src/main/cpp/flutter-bridge.cpp:677–685  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

675}
676
677MMKV_EXPORT bool removeStorage(const char *mmapID, const char *rootPath) {
678 if (rootPath) {
679 auto root = string(rootPath);
680 if (root.length() > 0) {
681 return MMKV::removeStorage(mmapID, &root);
682 }
683 }
684 return MMKV::removeStorage(mmapID, nullptr);
685}
686
687MMKV_EXPORT bool isMultiProcess(void *handle) {
688 MMKV *kv = static_cast<MMKV *>(handle);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected