| 226 | } // namespace mmkv |
| 227 | |
| 228 | MMKVPath_t ashmemMMKVPathWithID(const MMKVPath_t &mmapID) { |
| 229 | return MMKVPath_t(ASHMEM_NAME_DEF) + MMKV_PATH_SLASH + mmapID; |
| 230 | } |
| 231 | |
| 232 | static long long timespec_to_ms(struct timespec ts) { |
| 233 | return (long long)ts.tv_sec * 1000LL + ts.tv_nsec / 1000000LL; |
no outgoing calls
no test coverage detected