(
models: &config::MmioModels,
uc_ptr: *mut crate::uc_engine,
access_contexts: bool,
source: I,
)
| 90 | } |
| 91 | |
| 92 | pub fn new( |
| 93 | models: &config::MmioModels, |
| 94 | uc_ptr: *mut crate::uc_engine, |
| 95 | access_contexts: bool, |
| 96 | source: I, |
| 97 | ) -> Self { |
| 98 | let (models, passthrough) = build_models(models); |
| 99 | Self { source, models, passthrough, uc_ptr, access_contexts } |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | #[inline(always)] |
nothing calls this directly
no test coverage detected