MCPcopy Create free account
hub / github.com/cretz/stackparam / dealloc

Function dealloc

src/native.rs:683–686  ·  view source on GitHub ↗
(v: *mut T)

Source from the content-addressed store, hash-verified

681}
682
683unsafe fn dealloc<T>(v: *mut T) -> Result<(), String> {
684 let de_res = (**JVMTI_ENV).Deallocate.unwrap()(JVMTI_ENV, v as *mut c_uchar);
685 return util::unit_or_jvmti_err(de_res);
686}
687
688unsafe fn get_class_signature(class: jclass) -> Result<String, String> {
689 let mut ret: *mut c_char = ptr::null_mut();

Callers 5

class_sigFunction · 0.85
method_nameFunction · 0.85
get_method_param_infoFunction · 0.85
get_class_signatureFunction · 0.85
apply_local_var_tableFunction · 0.85

Calls 1

unit_or_jvmti_errFunction · 0.85

Tested by

no test coverage detected