Home
last modified time | relevance | path

Searched refs:JniContext (Results 1 – 3 of 3) sorted by relevance

/packages/modules/Uwb/indev_uwb_adaptation/jni/src/
Dapi.rs33 use crate::context::JniContext;
133 let ctx = JniContext::new(env, obj); in Java_com_android_server_uwb_indev_UwbServiceCore_nativeUwbServiceDestroy()
155 boolean_result_helper(enable(JniContext::new(env, obj)), "enable") in Java_com_android_server_uwb_indev_UwbServiceCore_nativeEnable()
165 boolean_result_helper(disable(JniContext::new(env, obj)), "disable") in Java_com_android_server_uwb_indev_UwbServiceCore_nativeDisable()
179 init_session(JniContext::new(env, obj), session_id, session_type, app_config_params), in Java_com_android_server_uwb_indev_UwbServiceCore_nativeInitSession()
193 deinit_session(JniContext::new(env, obj), session_id as u32), in Java_com_android_server_uwb_indev_UwbServiceCore_nativeDeinitSession()
208 start_ranging(JniContext::new(env, obj), session_id as u32), in Java_com_android_server_uwb_indev_UwbServiceCore_nativeStartRanging()
222 stop_ranging(JniContext::new(env, obj), session_id as u32), in Java_com_android_server_uwb_indev_UwbServiceCore_nativeStopRanging()
237 reconfigure(JniContext::new(env, obj), session_id as u32, app_config_params), in Java_com_android_server_uwb_indev_UwbServiceCore_nativeReconfigure()
254 JniContext::new(env, obj), in Java_com_android_server_uwb_indev_UwbServiceCore_nativeUpdateControllerMulticastList()
[all …]
Dobject_mapping.rs37 use crate::context::JniContext;
42 jni_context: JniContext<'a>,
47 Self { jni_context: JniContext::new(env, params_obj) } in new()
196 jni_context: JniContext<'a>,
201 Self { jni_context: JniContext::new(env, address_obj) } in new()
233 jni_context: JniContext<'a>,
238 Self { jni_context: JniContext::new(env, params_obj) } in new()
307 jni_context: JniContext<'a>,
312 Self { jni_context: JniContext::new(env, pulse_obj) } in new()
332 jni_context: JniContext<'a>,
[all …]
Dcontext.rs22 pub struct JniContext<'a> { struct
27 impl<'a> JniContext<'a> { argument