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

Method base_address_detection

rust/src/binary_view.rs:376–381  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

374 }
375
376 fn base_address_detection(&self) -> Option<BaseAddressDetection> {
377 unsafe {
378 let handle = BNCreateBaseAddressDetection(self.as_ref().handle);
379 NonNull::new(handle).map(|base| BaseAddressDetection::from_raw(base))
380 }
381 }
382
383 fn instruction_len<A: Architecture>(&self, arch: &A, addr: u64) -> Option<usize> {
384 unsafe {

Callers 1

test_base_detectionFunction · 0.80

Implementers 1

binary_view.rsrust/src/binary_view.rs

Calls 2

mapMethod · 0.80
as_refMethod · 0.45

Tested by 1

test_base_detectionFunction · 0.64