[`Function`] for the current AnalysisContext
(&self)
| 41 | |
| 42 | /// [`Function`] for the current AnalysisContext |
| 43 | pub fn function(&self) -> Ref<Function> { |
| 44 | let result = unsafe { BNAnalysisContextGetFunction(self.handle.as_ptr()) }; |
| 45 | assert!(!result.is_null()); |
| 46 | unsafe { Function::ref_from_raw(result) } |
| 47 | } |
| 48 | |
| 49 | /// [`LowLevelILFunction`] used to represent Low Level IL |
| 50 | pub unsafe fn lifted_il_function( |
no outgoing calls
no test coverage detected