(jni_env: *mut JNIEnv,
thread: jthread,
max_depth: jint,
index_until_start: usize)
| 369 | } |
| 370 | |
| 371 | unsafe fn get_params_as_object_array(jni_env: *mut JNIEnv, |
| 372 | thread: jthread, |
| 373 | max_depth: jint, |
| 374 | index_until_start: usize) -> Result<jobjectArray, String> { |
| 375 | return params_to_object_array(jni_env, get_params(jni_env, thread, max_depth, index_until_start)?); |
| 376 | } |
| 377 | |
| 378 | unsafe fn params_to_object_array(jni_env: *mut JNIEnv, methods: Vec<MethodInfo>) -> Result<jobjectArray, String> { |
| 379 | let obj_str = CString::new("java/lang/Object").unwrap(); |
no test coverage detected