(
&self,
debug_info: &mut DebugInfo,
bv: &BinaryView,
debug_file: &BinaryView,
progress: Box<dyn Fn(usize, usize) -> Result<(), ()>>,
)
| 30 | } |
| 31 | |
| 32 | fn parse_info( |
| 33 | &self, |
| 34 | debug_info: &mut DebugInfo, |
| 35 | bv: &BinaryView, |
| 36 | debug_file: &BinaryView, |
| 37 | progress: Box<dyn Fn(usize, usize) -> Result<(), ()>>, |
| 38 | ) -> bool { |
| 39 | match parse_idb_info(debug_info, bv, debug_file, progress) { |
| 40 | Ok(()) => true, |
| 41 | Err(error) => { |
| 42 | error!("Unable to parse IDB file: {error}"); |
| 43 | false |
| 44 | } |
| 45 | } |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | struct TILDebugInfoParser; |
nothing calls this directly
no test coverage detected