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

Method show_graph_report

rust/src/binary_view.rs:1112–1121  ·  view source on GitHub ↗
(&self, raw_name: S, graph: &FlowGraph)

Source from the content-addressed store, hash-verified

1110 }
1111
1112 fn show_graph_report<S: BnStrCompatible>(&self, raw_name: S, graph: &FlowGraph) {
1113 let raw_name = raw_name.into_bytes_with_nul();
1114 unsafe {
1115 BNShowGraphReport(
1116 self.as_ref().handle,
1117 raw_name.as_ref().as_ptr() as *mut _,
1118 graph.handle,
1119 );
1120 }
1121 }
1122
1123 fn load_settings<S: BnStrCompatible>(&self, view_type_name: S) -> Result<Ref<Settings>> {
1124 let view_type_name = view_type_name.into_bytes_with_nul();

Callers 1

test_graphFunction · 0.45

Implementers 1

binary_view.rsrust/src/binary_view.rs

Calls 2

into_bytes_with_nulMethod · 0.80
as_refMethod · 0.45

Tested by 1

test_graphFunction · 0.36