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

Function enableDisableProcessMode

Android/MMKV/mmkv/src/main/cpp/native-bridge.cpp:1193–1199  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1191}
1192
1193MMKV_JNI void enableDisableProcessMode(JNIEnv *env, jclass type, jboolean notify) {
1194 if (notify == JNI_TRUE) {
1195 MMKV::enableDisableProcessMode(true);
1196 } else {
1197 MMKV::enableDisableProcessMode(false);
1198 }
1199}
1200
1201MMKV_JNI jlong importFrom(JNIEnv *env, jobject instance, jlong handle, jlong srcHandle) {
1202 MMKV *kv = reinterpret_cast<MMKV *>(handle);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected