(thread: jthread, depth: jint, slot: jint)
| 581 | } |
| 582 | |
| 583 | unsafe fn get_local_int(thread: jthread, depth: jint, slot: jint) -> Result<jint, String> { |
| 584 | let mut val: jint = 0; |
| 585 | let local_res = (**JVMTI_ENV).GetLocalInt.unwrap()(JVMTI_ENV, thread, depth, slot, &mut val); |
| 586 | return util::result_or_jvmti_err(val, local_res); |
| 587 | } |
| 588 | |
| 589 | struct MethodInfo { |
| 590 | mods: jint, |
no test coverage detected