A re-implemented fuzzware MMIO handler
| 51 | |
| 52 | /// A re-implemented fuzzware MMIO handler |
| 53 | pub struct FuzzwareMmioHandler<I> { |
| 54 | pub source: I, |
| 55 | pub models: Vec<Model>, |
| 56 | pub passthrough: Vec<u32>, |
| 57 | access_contexts: bool, |
| 58 | uc_ptr: *mut crate::uc_engine, |
| 59 | } |
| 60 | |
| 61 | impl<I> std::ops::DerefMut for FuzzwareMmioHandler<I> { |
| 62 | fn deref_mut(&mut self) -> &mut Self::Target { |
nothing calls this directly
no outgoing calls
no test coverage detected