(vm: &mut Vm)
| 36 | |
| 37 | impl Context { |
| 38 | pub fn new(vm: &mut Vm) -> anyhow::Result<Self> { |
| 39 | Ok(Self { vm: vm as *mut Vm, io_handle: None, uc_vars: vec![], vtable: None, timer: None }) |
| 40 | } |
| 41 | |
| 42 | pub(crate) unsafe fn uc_ptr(&mut self) -> *mut fuzzware::uc_engine { |
| 43 | match self.vtable.as_mut() { |
nothing calls this directly
no outgoing calls
no test coverage detected