Home
last modified time | relevance | path

Searched defs:JThrowable (Results 1 – 5 of 5) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/jni/src/wrapper/objects/
Djthrowable.rs9 pub struct JThrowable<'local>(JObject<'local>); struct
11 impl<'local> AsRef<JThrowable<'local>> for JThrowable<'local> { implementation
17 impl<'local> AsRef<JObject<'local>> for JThrowable<'local> { implementation
23 impl<'local> ::std::ops::Deref for JThrowable<'local> { implementation
37 impl<'local> From<JObject<'local>> for JThrowable<'local> { implementation
43 impl<'local, 'obj_ref> From<&'obj_ref JObject<'local>> for &'obj_ref JThrowable<'local> { implementation
46 unsafe { &*(other as *const JObject<'local> as *const JThrowable<'local>) } in from() constant
50 impl<'local> std::default::Default for JThrowable<'local> { implementation
56 impl<'local> JThrowable<'local> { implementation
/aosp_15_r20/external/rust/android-crates-io/extra_versions/crates/jni/src/wrapper/objects/
Djthrowable.rs10 pub struct JThrowable<'a>(JObject<'a>); struct
12 impl<'a> ::std::ops::Deref for JThrowable<'a> { implementation
26 impl<'a> From<JObject<'a>> for JThrowable<'a> { implementation
32 impl<'a> std::default::Default for JThrowable<'a> { implementation
38 impl<'a> JThrowable<'a> { impl
/aosp_15_r20/external/fbjni/cxx/fbjni/detail/
H A DExceptions.h50 class JThrowable; variable
/aosp_15_r20/external/rust/android-crates-io/extra_versions/crates/jni/tests/
Djni_api.rs945 fn assert_exception_type(env: &JNIEnv, exception: JThrowable, expected_type: &str) { in assert_exception_type()
950 fn assert_exception_message(env: &JNIEnv, exception: JThrowable, expected_message: &str) { in assert_exception_message()
/aosp_15_r20/external/rust/android-crates-io/crates/jni/tests/
Djni_api.rs1178 fn assert_exception_type(env: &mut JNIEnv, exception: &JThrowable, expected_type: &str) { in assert_exception_type()
1183 fn assert_exception_message(env: &mut JNIEnv, exception: &JThrowable, expected_message: &str) { in assert_exception_message()