MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / parse_info

Method parse_info

plugins/idb_import/src/lib.rs:32–46  ·  view source on GitHub ↗
(
        &self,
        debug_info: &mut DebugInfo,
        bv: &BinaryView,
        debug_file: &BinaryView,
        progress: Box<dyn Fn(usize, usize) -> Result<(), ()>>,
    )

Source from the content-addressed store, hash-verified

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
49struct TILDebugInfoParser;

Callers

nothing calls this directly

Calls 2

parse_idb_infoFunction · 0.85
parse_til_infoFunction · 0.85

Tested by

no test coverage detected