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

Method function

rust/src/workflow.rs:43–47  ·  view source on GitHub ↗

[`Function`] for the current AnalysisContext

(&self)

Source from the content-addressed store, hash-verified

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(

Callers 2

lifted_il_functionMethod · 0.45
llil_functionMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected