| 534 | } |
| 535 | |
| 536 | MMKV_EXPORT void clearMemoryCache(void *handle) { |
| 537 | MMKV *kv = static_cast<MMKV *>(handle); |
| 538 | if (kv) { |
| 539 | kv->clearMemoryCache(); |
| 540 | } |
| 541 | } |
| 542 | |
| 543 | MMKV_EXPORT int32_t pageSize() { |
| 544 | return static_cast<int32_t>(DEFAULT_MMAP_SIZE); |
nothing calls this directly
no test coverage detected