Home
last modified time | relevance | path

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

/wasmtime-44.0.1/winch/codegen/src/codegen/
H A Derror.rs43 Internal(InternalError),
48 pub(crate) enum InternalError { enum
123 Self::Internal(InternalError::UnexpectedFunctionCall) in unexpected_function_call()
127 Self::Internal(InternalError::SPAddressingExpected) in sp_addressing_expected()
131 Self::Internal(InternalError::InvalidSPOffset) in invalid_sp_offset()
143 Self::Internal(InternalError::ControlFrameExpected) in control_frame_expected()
151 Self::Internal(InternalError::MissingValuesInStack) in missing_values_in_stack()
155 Self::Internal(InternalError::UnexpectedOperandSize) in unexpected_operand_size()
175 Self::Internal(InternalError::IllegalFuelState) in illegal_fuel_state()
179 Self::Internal(InternalError::InvalidLocalOffset) in invalid_local_offset()
[all …]
/wasmtime-44.0.1/crates/wasi-http/src/p3/
H A Drequest.rs168 return Err(ErrorCode::InternalError(Some(format!("{err:#}"))).into()); in into_http_with_getter()
216 .map_err(|err| ErrorCode::InternalError(Some(err.to_string())))? in into_http_with_getter()
244 .map_err(|err| ErrorCode::InternalError(Some(err.to_string())))?; in into_http_with_getter()
580 Err(ErrorCode::InternalError(Some("uh oh".to_string()))) in test_request_into_http_uri_error()
591 Poll::Ready(Err(ErrorCode::InternalError(Some(_)))) in test_request_into_http_uri_error()
/wasmtime-44.0.1/crates/wasi-http/src/p2/
H A Derror.rs146 ErrorCode::InternalError(Some(msg)) in internal_error()