/aosp_15_r20/external/rust/android-crates-io/extra_versions/crates/jni/tests/ |
D | threads_nested_attach_daemon.rs | 5 attach_current_thread, attach_current_thread_as_daemon, attach_current_thread_permanently, 12 let env = attach_current_thread_as_daemon(); in nested_attaches_should_not_detach_daemon_thread() 42 let env_nested = attach_current_thread_as_daemon(); in nested_attaches_should_not_detach_daemon_thread()
|
D | threads_detach_daemon.rs | 6 use util::{attach_current_thread_as_daemon, call_java_abs, jvm}; 11 let env = attach_current_thread_as_daemon(); in daemon_thread_detaches_when_finished()
|
D | threads_explicit_detach_daemon.rs | 4 use util::{attach_current_thread_as_daemon, call_java_abs, detach_current_thread, jvm}; 9 let guard = attach_current_thread_as_daemon(); in explicit_detach_detaches_thread_attached_as_daemon()
|
D | threads_nested_attach_permanently.rs | 5 attach_current_thread, attach_current_thread_as_daemon, attach_current_thread_permanently, 42 let env_nested = attach_current_thread_as_daemon(); in nested_attaches_should_not_detach_permanent_thread()
|
D | threads_nested_attach_guard.rs | 5 attach_current_thread, attach_current_thread_as_daemon, attach_current_thread_permanently, 42 let env_nested = attach_current_thread_as_daemon(); in nested_attaches_should_not_detach_guarded_thread()
|
/aosp_15_r20/external/rust/android-crates-io/crates/jni/tests/ |
D | threads_nested_attach_daemon.rs | 5 attach_current_thread, attach_current_thread_as_daemon, attach_current_thread_permanently, 12 let mut env = attach_current_thread_as_daemon(); in nested_attaches_should_not_detach_daemon_thread() 42 let mut env_nested = attach_current_thread_as_daemon(); in nested_attaches_should_not_detach_daemon_thread()
|
D | threads_detach_daemon.rs | 6 use util::{attach_current_thread_as_daemon, call_java_abs, jvm}; 11 let mut env = attach_current_thread_as_daemon(); in daemon_thread_detaches_when_finished()
|
D | threads_explicit_detach_daemon.rs | 4 use util::{attach_current_thread_as_daemon, call_java_abs, detach_current_thread, jvm}; 9 let mut guard = attach_current_thread_as_daemon(); in explicit_detach_detaches_thread_attached_as_daemon()
|
D | threads_nested_attach_permanently.rs | 5 attach_current_thread, attach_current_thread_as_daemon, attach_current_thread_permanently, 42 let mut env_nested = attach_current_thread_as_daemon(); in nested_attaches_should_not_detach_permanent_thread()
|
D | threads_nested_attach_guard.rs | 5 attach_current_thread, attach_current_thread_as_daemon, attach_current_thread_permanently, 42 let mut env_nested = attach_current_thread_as_daemon(); in nested_attaches_should_not_detach_guarded_thread()
|
D | executor.rs | 135 let mut env = jvm.attach_current_thread_as_daemon().unwrap();
|
/aosp_15_r20/external/rust/android-crates-io/extra_versions/crates/jni/src/wrapper/java_vm/ |
D | vm.rs | 251 pub fn attach_current_thread_as_daemon(&self) -> Result<JNIEnv> { in attach_current_thread_as_daemon() method 283 guard.attach_current_thread_as_daemon()? in attach_current_thread_impl() 406 unsafe fn attach_current_thread_as_daemon(&self) -> Result<*mut sys::JNIEnv> { in attach_current_thread_as_daemon() method
|
/aosp_15_r20/external/rust/android-crates-io/crates/jni/src/wrapper/java_vm/ |
D | vm.rs | 332 pub fn attach_current_thread_as_daemon(&self) -> Result<JNIEnv> { in attach_current_thread_as_daemon() method 364 guard.attach_current_thread_as_daemon()? in attach_current_thread_impl() 578 unsafe fn attach_current_thread_as_daemon(&self) -> Result<*mut sys::JNIEnv> { in attach_current_thread_as_daemon() method
|
/aosp_15_r20/external/rust/android-crates-io/extra_versions/crates/jni/tests/util/ |
D | mod.rs | 53 pub fn attach_current_thread_as_daemon() -> JNIEnv<'static> { in attach_current_thread_as_daemon() function 55 .attach_current_thread_as_daemon() in attach_current_thread_as_daemon()
|
/aosp_15_r20/external/rust/android-crates-io/crates/jni/tests/util/ |
D | mod.rs | 53 pub fn attach_current_thread_as_daemon() -> JNIEnv<'static> { in attach_current_thread_as_daemon() function 55 .attach_current_thread_as_daemon() in attach_current_thread_as_daemon()
|
/aosp_15_r20/external/rust/android-crates-io/extra_versions/crates/jni/src/wrapper/ |
D | executor.rs | 74 let jni_env = self.vm.attach_current_thread_as_daemon()?; in with_attached_capacity()
|
/aosp_15_r20/external/rust/android-crates-io/crates/jni/src/wrapper/ |
D | executor.rs | 76 let mut jni_env = self.vm.attach_current_thread_as_daemon()?; in with_attached_capacity()
|
/aosp_15_r20/external/rust/android-crates-io/extra_versions/crates/jni/ |
D | CHANGELOG.md | 121 with `JavaVM::attach_current_thread_as_daemon` also automatically detach themselves 138 - Native threads attached with `JavaVM::attach_current_thread_as_daemon` now automatically detach
|
/aosp_15_r20/external/rust/android-crates-io/crates/jni/ |
D | CHANGELOG.md | 188 with `JavaVM::attach_current_thread_as_daemon` also automatically detach themselves 205 - Native threads attached with `JavaVM::attach_current_thread_as_daemon` now automatically detach
|