()
| 376 | } |
| 377 | |
| 378 | pub(crate) fn get_thread_local_env_opt() -> Option<*mut JNIEnv> { |
| 379 | JNI_ENV.with( |
| 380 | |existing_jni_env_opt| *existing_jni_env_opt.borrow(), |
| 381 | ) |
| 382 | } |
| 383 | |
| 384 | pub(crate) fn set_thread_local_env(jni_env_opt: Option<*mut JNIEnv>) { |
| 385 | debug("Called set_thread_local_env"); |
no outgoing calls
no test coverage detected