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

Method low_level_il

rust/src/function.rs:523–534  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

521 }
522
523 pub fn low_level_il(&self) -> Result<Ref<RegularLowLevelILFunction<CoreArchitecture>>, ()> {
524 unsafe {
525 let llil_ptr = BNGetFunctionLowLevelIL(self.handle);
526 match llil_ptr.is_null() {
527 false => Ok(RegularLowLevelILFunction::ref_from_raw(
528 self.arch(),
529 llil_ptr,
530 )),
531 true => Err(()),
532 }
533 }
534 }
535
536 pub fn low_level_il_if_available(
537 &self,

Callers 3

test_llil_infoFunction · 0.45
test_llil_visitorFunction · 0.45
mainFunction · 0.45

Calls 1

archMethod · 0.45

Tested by 2

test_llil_infoFunction · 0.36
test_llil_visitorFunction · 0.36