Home
last modified time | relevance | path

Searched refs:Handler (Results 1 – 16 of 16) sorted by relevance

/wasmtime-44.0.1/crates/unwinder/src/
H A Dthrow.rs24 pub struct Handler { struct
33 impl Handler { argument
51 ) -> Option<Handler> { in find() argument
64 return ControlFlow::Break(Handler { in find()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/
H A Dthrow.rs7 use wasmtime_unwinder::{Frame, Handler};
15 pub unsafe fn compute_handler(store: &mut dyn VMStore) -> Option<Handler> { in compute_handler() argument
124 let action = unsafe { Handler::find(unwinder, handler_lookup, exit_pc, exit_fp, entry_fp) }; in compute_handler()
H A Dtraphandlers.rs31 use wasmtime_unwinder::Handler;
60 Trap(Handler),
500 UnwindToWasm(Handler),
953 pub(crate) fn entry_trap_handler(&self) -> Handler { in entry_trap_handler() argument
959 Handler { pc, sp, fp } in entry_trap_handler()
966 handler: &Handler, in resume_to_exception_handler() argument
H A Dinterpreter_disabled.rs57 _handler: &wasmtime_unwinder::Handler, in resume_to_exception_handler() argument
H A Dinterpreter.rs12 use wasmtime_unwinder::Handler;
438 handler: &Handler, in resume_to_exception_handler() argument
/wasmtime-44.0.1/pulley/src/interp/
H A Dtail_loop.rs39 type Handler = fn(&mut MachineState, UnsafeBytecodeStream, ExecutingPcRef<'_>) -> Done; typedef
110 static OPCODE_HANDLER_TABLE: [Handler; Opcode::MAX as usize + 1] = {
131 static EXTENDED_OPCODE_HANDLER_TABLE: [Handler; ExtendedOpcode::MAX as usize + 1] = {
/wasmtime-44.0.1/crates/test-programs/src/bin/
H A Dp3_http_echo.rs3 service::exports::wasi::http::handler::Guest as Handler,
14 impl Handler for Component {
H A Dp3_http_middleware_with_chain.rs42 use bindings::{exports::wasi::http::handler::Guest as Handler, local::local::chain_http};
49 impl Handler for Component {
H A Dp3_http_proxy.rs3 service::exports::wasi::http::handler::Guest as Handler,
17 impl Handler for Component {
H A Dp2_api_proxy_streaming.rs11 struct Handler; struct
13 test_programs::proxy::export!(Handler);
15 impl test_programs::proxy::exports::wasi::http::incoming_handler::Guest for Handler { implementation
/wasmtime-44.0.1/crates/debugger/src/
H A Dlib.rs166 struct Handler<T: Send + 'static>(Arc<HandlerInner<T>>); struct
168 impl<T: Send + 'static> std::clone::Clone for Handler<T> { implementation
170 Handler(self.0.clone()) in clone()
174 impl<T: Send + 'static> DebugHandler for Handler<T> { implementation
263 let handler = Handler(Arc::new(HandlerInner { in new()
/wasmtime-44.0.1/crates/unwinder/src/arch/
H A Dmod.rs43 impl crate::Handler {
/wasmtime-44.0.1/tests/all/component_model/
H A Dcall_hook.rs494 struct Handler; in drop_suspended_async_hook() struct
497 impl CallHookHandler<u32> for Handler { in drop_suspended_async_hook() implementation
564 store.call_hook_async(Handler); in drop_suspended_async_hook()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/sys/unix/
H A Dsignals.rs9 use wasmtime_unwinder::Handler;
337 unsafe fn store_handler_in_ucontext(cx: *mut libc::c_void, handler: &Handler) { in store_handler_in_ucontext() argument
/wasmtime-44.0.1/tests/all/
H A Dcall_hook.rs704 struct Handler; in drop_suspended_async_hook() struct
707 impl CallHookHandler<u32> for Handler { in drop_suspended_async_hook() implementation
728 store.call_hook_async(Handler); in drop_suspended_async_hook()
/wasmtime-44.0.1/cranelift/filetests/src/
H A Dfunction_runner.rs668 match wasmtime_unwinder::Handler::find( in __cranelift_throw()