Searched defs:JObject (Results 1 – 12 of 12) sorted by relevance
/external/rust/crates/jni/src/wrapper/objects/ |
D | jobject.rs | 15 pub struct JObject<'a> { struct 20 impl<'a> From<jobject> for JObject<'a> { implementation 29 impl<'a> ::std::ops::Deref for JObject<'a> { implementation 37 impl<'a> JObject<'a> { impl
|
D | global_ref.rs | 37 impl<'a> From<&'a GlobalRef> for JObject<'a> { implementation 59 pub fn as_obj(&self) -> JObject { in as_obj() 78 pub fn as_obj(&self) -> JObject { in as_obj()
|
D | jthrowable.rs | 26 impl<'a> From<JThrowable<'a>> for JObject<'a> { implementation 27 fn from(other: JThrowable) -> JObject { in from()
|
D | jclass.rs | 26 impl<'a> From<JClass<'a>> for JObject<'a> { implementation 27 fn from(other: JClass) -> JObject { in from()
|
D | jbytebuffer.rs | 23 impl<'a> From<JByteBuffer<'a>> for JObject<'a> { implementation 24 fn from(other: JByteBuffer) -> JObject { in from()
|
D | jstring.rs | 26 impl<'a> From<JString<'a>> for JObject<'a> { implementation 27 fn from(other: JString) -> JObject { in from()
|
D | auto_array.rs | 13 fn get(env: &JNIEnv, obj: JObject, is_copy: &mut jboolean) -> Result<*mut Self>; in get() 16 fn release(env: &JNIEnv, obj: JObject, ptr: NonNull<Self>, mode: i32) -> Result<()>; in release()
|
D | auto_local.rs | 76 impl<'a> From<&'a AutoLocal<'a, '_>> for JObject<'a> { implementation
|
D | jlist.rs | 32 impl<'a: 'b, 'b> From<JList<'a, 'b>> for JObject<'a> { implementation
|
D | jmap.rs | 30 impl<'a: 'b, 'b> From<JMap<'a, 'b>> for JObject<'a> { implementation
|
D | jvalue.rs | 176 impl<'a> TryFrom<JValue<'a>> for JObject<'a> { implementation
|
/external/rust/crates/jni/src/wrapper/descriptors/ |
D | class_desc.rs | 18 impl<'a, 'b> Desc<'a, JClass<'a>> for JObject<'b> { implementation
|