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

Method entry_point_functions

rust/src/binary_view.rs:1007–1014  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

1005 }
1006
1007 fn entry_point_functions(&self) -> Array<Function> {
1008 unsafe {
1009 let mut count = 0;
1010 let functions = BNGetAllEntryFunctions(self.as_ref().handle, &mut count);
1011
1012 Array::new(functions, count, ())
1013 }
1014 }
1015
1016 fn functions(&self) -> Array<Function> {
1017 unsafe {

Callers 1

fmtMethod · 0.80

Implementers 1

binary_view.rsrust/src/binary_view.rs

Calls 1

as_refMethod · 0.45

Tested by

no test coverage detected