Home
last modified time | relevance | path

Searched refs:msg_bytes (Results 1 – 2 of 2) sorted by relevance

/wasmtime-44.0.1/crates/c-api/include/wasmtime/
H A Derror.hh34 wasm_byte_vec_t msg_bytes; in message() local
35 wasmtime_error_message(ptr.get(), &msg_bytes); in message()
36 auto ret = std::string(msg_bytes.data, msg_bytes.size); in message()
37 wasm_byte_vec_delete(&msg_bytes); in message()
/wasmtime-44.0.1/crates/c-api/src/
H A Derror.rs27 let msg_bytes = unsafe { std::ffi::CStr::from_ptr(msg).to_bytes() }; in wasmtime_error_new() localVariable
28 let msg_string = String::from_utf8_lossy(msg_bytes).into_owned(); in wasmtime_error_new()