Home
last modified time | relevance | path

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

/wasmtime-44.0.1/crates/environ/src/
H A Dbuiltin.rs47 check_malloc(vmctx: vmctx, addr: u32, len: u32) -> bool;
/wasmtime-44.0.1/crates/cranelift/src/
H A Dfunc_environ.rs620 let check_malloc = self.builtin_functions.check_malloc(builder.func); in hook_malloc_exit() localVariable
638 builder.ins().call(check_malloc, &[vmctx, retval, len]); in hook_malloc_exit()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/
H A Dlibcalls.rs1360 fn check_malloc(store: &mut dyn VMStore, instance: InstanceId, addr: u32, len: u32) -> Result<()> { in check_malloc() function