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

Method low_level_il_if_available

rust/src/function.rs:536–546  ·  view source on GitHub ↗
(
        &self,
    )

Source from the content-addressed store, hash-verified

534 }
535
536 pub fn low_level_il_if_available(
537 &self,
538 ) -> Option<Ref<RegularLowLevelILFunction<CoreArchitecture>>> {
539 let llil_ptr = unsafe { BNGetFunctionLowLevelILIfAvailable(self.handle) };
540 match llil_ptr.is_null() {
541 false => {
542 Some(unsafe { RegularLowLevelILFunction::ref_from_raw(self.arch(), llil_ptr) })
543 }
544 true => None,
545 }
546 }
547
548 pub fn lifted_il(&self) -> Result<Ref<LiftedILFunction<CoreArchitecture>>, ()> {
549 unsafe {

Callers

nothing calls this directly

Calls 1

archMethod · 0.45

Tested by

no test coverage detected