| 48 | } |
| 49 | |
| 50 | WasiCryptoExpect<void> Context::optionsSetU64(__wasi_options_t OptionsHandle, |
| 51 | std::string_view Name, |
| 52 | uint64_t Value) noexcept { |
| 53 | return OptionsManager.get(OptionsHandle) |
| 54 | .and_then([Name, Value](auto &&Options) noexcept { |
| 55 | return Common::optionsSetU64(Options, Name, Value); |
| 56 | }); |
| 57 | } |
| 58 | |
| 59 | WasiCryptoExpect<void> |
| 60 | Context::optionsSetGuestBuffer(__wasi_options_t OptionsHandle, |
no test coverage detected