| 556 | } |
| 557 | |
| 558 | MMKV_EXPORT void clearMemoryCache(void *handle) { |
| 559 | MMKV *kv = static_cast<MMKV *>(handle); |
| 560 | if (kv) { |
| 561 | kv->clearMemoryCache(); |
| 562 | } |
| 563 | } |
| 564 | |
| 565 | MMKV_EXPORT int32_t pageSize() { |
| 566 | return static_cast<int32_t>(DEFAULT_MMAP_SIZE); |
nothing calls this directly
no test coverage detected