List of functions *starting* at `addr`
(&self, addr: u64)
| 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> { |
no test coverage detected