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

Method functions_at

rust/src/binary_view.rs:1026–1034  ·  view source on GitHub ↗

List of functions *starting* at `addr`

(&self, addr: u64)

Source from the content-addressed store, hash-verified

1024
1025 /// List of functions *starting* at `addr`
1026 fn functions_at(&self, addr: u64) -> Array<Function> {
1027 unsafe {
1028 let mut count = 0;
1029 let functions =
1030 BNGetAnalysisFunctionsForAddress(self.as_ref().handle, addr, &mut count);
1031
1032 Array::new(functions, count, ())
1033 }
1034 }
1035
1036 // List of functions containing `addr`
1037 fn functions_containing(&self, addr: u64) -> Array<Function> {

Callers 2

post_processMethod · 0.80
adjacency_constraintsMethod · 0.80

Implementers 1

binary_view.rsrust/src/binary_view.rs

Calls 1

as_refMethod · 0.45

Tested by

no test coverage detected