MCPcopy Create free account
hub / github.com/MagnetForensics/dumpit-linux / DumpItForLinux

Class DumpItForLinux

src/main.rs:140–152  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

138}
139
140struct DumpItForLinux {
141 pub iomem_ranges: Vec<MemoryRange>,
142 pub mem_ranges: Vec<MemoryRange>,
143
144 // VMCOREINFO
145 pub vmci_size_va: Option<u64>,
146 pub vmci_data_va: Option<u64>,
147 pub vmcoreinfo: Option<Vec<u8>>,
148
149 // kcore
150 pub kcore: fs::File,
151 pub out_header: Option<Vec<u8>>
152}
153
154impl DumpItForLinux {
155 fn new() -> Result<Self> {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected