Home
last modified time | relevance | path

Searched defs:JObject (Results 1 – 25 of 32) sorted by relevance

12

/aosp_15_r20/packages/modules/Uwb/service/uci/jni/src/
Duci_jni_android_new.rs77 _obj: JObject, in Java_com_android_server_uwb_jni_NativeUwbManager_nativeInit()
126 obj: JObject, in Java_com_android_server_uwb_jni_NativeUwbManager_nativeDoInitialize()
142 obj: JObject, in native_do_initialize()
153 obj: JObject, in Java_com_android_server_uwb_jni_NativeUwbManager_nativeDoDeinitialize()
160 fn native_do_deinitialize(env: JNIEnv, obj: JObject, chip_id: JString) -> Result<()> { in native_do_deinitialize()
169 _obj: JObject, in Java_com_android_server_uwb_jni_NativeUwbManager_nativeGetTimestampResolutionNanos()
180 obj: JObject, in Java_com_android_server_uwb_jni_NativeUwbManager_nativeDeviceReset()
188 fn native_device_reset(env: JNIEnv, obj: JObject, chip_id: JString) -> Result<()> { in native_device_reset()
197 obj: JObject, in Java_com_android_server_uwb_jni_NativeUwbManager_nativeSessionInit()
211 obj: JObject, in native_session_init()
[all …]
Dnotification_manager_android.rs326 ) -> Result<JObject, JNIError> { in cached_jni_call()
370 ) -> Result<JObject, JNIError> { in on_session_status_notification()
388 ) -> Result<JObject, JNIError> { in on_session_update_multicast_notification()
463 ) -> Result<JObject, JNIError> { in on_session_dl_tdoa_range_data_notification()
781 ) -> Result<JObject, JNIError> { in on_session_owr_aoa_range_data_notification()
888 ) -> Result<JObject, JNIError> { in on_session_two_way_range_data_notification()
984 ) -> Result<JObject, JNIError> { in on_data_transfer_status_notification()
1001 ) -> Result<JObject, JNIError> { in on_data_transfer_phase_config_notification()
1016 ) -> Result<JObject, JNIError> { in on_rf_periodic_tx_notification()
/aosp_15_r20/packages/modules/Uwb/indev_uwb_adaptation/jni/src/
Dapi.rs45 obj: JObject, in Java_com_android_server_uwb_indev_UwbServiceCore_nativeInit()
68 obj: JObject, in Java_com_android_server_uwb_indev_UwbServiceCore_nativeUwbServiceNew()
130 obj: JObject, in Java_com_android_server_uwb_indev_UwbServiceCore_nativeUwbServiceDestroy()
152 obj: JObject, in Java_com_android_server_uwb_indev_UwbServiceCore_nativeEnable()
162 obj: JObject, in Java_com_android_server_uwb_indev_UwbServiceCore_nativeDisable()
172 obj: JObject, in Java_com_android_server_uwb_indev_UwbServiceCore_nativeInitSession()
175 app_config_params: JObject, in Java_com_android_server_uwb_indev_UwbServiceCore_nativeInitSession()
188 obj: JObject, in Java_com_android_server_uwb_indev_UwbServiceCore_nativeDeinitSession()
202 obj: JObject, in Java_com_android_server_uwb_indev_UwbServiceCore_nativeStartRanging()
217 obj: JObject, in Java_com_android_server_uwb_indev_UwbServiceCore_nativeStopRanging()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/jni/src/wrapper/objects/
Djobject.rs34 pub struct JObject<'local> { struct
39 unsafe impl Send for JObject<'static> {} argument
40 unsafe impl Sync for JObject<'static> {} implementation
42 impl<'local> AsRef<JObject<'local>> for JObject<'local> { implementation
48 impl<'local> AsMut<JObject<'local>> for JObject<'local> { implementation
54 impl<'local> ::std::ops::Deref for JObject<'local> { implementation
62 impl<'local> JObject<'local> { implementation
99 impl<'local> std::default::Default for JObject<'local> { implementation
Djmap.rs74 key: &JObject, in get()
101 key: &JObject, in put()
102 value: &JObject, in put()
129 key: &JObject, in remove()
Djstring.rs31 impl<'local> From<JString<'local>> for JObject<'local> { implementation
32 fn from(other: JString) -> JObject { in from()
46 unsafe { &*(other as *const JObject<'local> as *const JString<'local>) } in from() constant
Djthrowable.rs31 impl<'local> From<JThrowable<'local>> for JObject<'local> { implementation
32 fn from(other: JThrowable) -> JObject { in from()
46 unsafe { &*(other as *const JObject<'local> as *const JThrowable<'local>) } in from() constant
Djbytebuffer.rs29 impl<'local> From<JByteBuffer<'local>> for JObject<'local> { implementation
30 fn from(other: JByteBuffer) -> JObject { in from()
44 unsafe { &*(other as *const JObject<'local> as *const JByteBuffer<'local>) } in from() constant
Djclass.rs32 impl<'local> From<JClass<'local>> for JObject<'local> { implementation
33 fn from(other: JClass) -> JObject { in from()
49 unsafe { &*(other as *const JObject<'local> as *const JClass<'local>) } in from() constant
Djobject_array.rs33 impl<'local> From<JObjectArray<'local>> for JObject<'local> { implementation
34 fn from(other: JObjectArray) -> JObject { in from()
50 unsafe { &*(other as *const JObject<'local> as *const JObjectArray<'local>) } in from() constant
Djprimitive_array.rs50 impl<'local, T: TypeArray> From<JPrimitiveArray<'local, T>> for JObject<'local> { implementation
51 fn from(other: JPrimitiveArray<'local, T>) -> JObject { in from()
69 unsafe { &*(other as *const JObject<'local> as *const JPrimitiveArray<'local, T>) } in from() constant
/aosp_15_r20/external/rust/android-crates-io/extra_versions/crates/jni/src/wrapper/objects/
Djobject.rs15 pub struct JObject<'a> { struct
20 impl<'a> ::std::ops::Deref for JObject<'a> { implementation
28 impl<'a> JObject<'a> { impl
52 impl<'a> std::default::Default for JObject<'a> { implementation
Dglobal_ref.rs38 impl<'a> From<&'a GlobalRef> for JObject<'a> { implementation
60 pub fn as_obj(&self) -> JObject { in as_obj()
79 pub fn as_obj(&self) -> JObject { in as_obj()
Djclass.rs20 impl<'a> From<JClass<'a>> for JObject<'a> { implementation
21 fn from(other: JClass) -> JObject { in from()
Djthrowable.rs20 impl<'a> From<JThrowable<'a>> for JObject<'a> { implementation
21 fn from(other: JThrowable) -> JObject { in from()
Djstring.rs20 impl<'a> From<JString<'a>> for JObject<'a> { implementation
21 fn from(other: JString) -> JObject { in from()
Djbytebuffer.rs17 impl<'a> From<JByteBuffer<'a>> for JObject<'a> { implementation
18 fn from(other: JByteBuffer) -> JObject { in from()
Dauto_array.rs13 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()
/aosp_15_r20/packages/modules/Virtualization/android/forwarder_host/src/
Dforwarder_host.rs328 jni_cb: &JObject, in create_forwarder_session()
383 _class: JObject, in Java_com_android_virtualization_terminal_DebianServiceImpl_runForwarderHost()
385 callback: JObject, in Java_com_android_virtualization_terminal_DebianServiceImpl_runForwarderHost()
405 _class: JObject, in Java_com_android_virtualization_terminal_DebianServiceImpl_terminateForwarderHost()
414 _class: JObject, in Java_com_android_virtualization_terminal_DebianServiceImpl_updateListeningPorts()
/aosp_15_r20/external/fbjni/cxx/fbjni/detail/
H A DMeta.h57 class JObject; variable
242 friend class JObject; in DEFINE_PRIMITIVE_NON_VIRTUAL_METHOD_CLASS() local
276 friend class JObject; variable
H A DReferences.h145 class JObject; variable
H A DCoreClasses.h40 class JObject; variable
/aosp_15_r20/packages/modules/Connectivity/remoteauth/service/jni/src/
Dremoteauth_jni_android_platform.rs122 java_platform_native: JObject, in new()
229 _: JObject, in Java_com_android_server_remoteauth_jni_NativeRemoteAuthJavaPlatform_native_on_send_request_success()
261 _: JObject, in Java_com_android_server_remoteauth_jni_NativeRemoteAuthJavaPlatform_native_on_send_request_error()
Dremoteauth_jni_android_protocol.rs28 _: JObject, in Java_com_android_server_remoteauth_jni_NativeRemoteAuthJavaPlatform_native_init()
/aosp_15_r20/external/rust/android-crates-io/extra_versions/crates/jni/src/wrapper/descriptors/
Dclass_desc.rs18 impl<'a, 'b> Desc<'a, JClass<'a>> for JObject<'b> { implementation

12