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

Method notify_data_removed

rust/src/binary_view.rs:243–247  ·  view source on GitHub ↗
(&self, offset: u64, len: usize)

Source from the content-addressed store, hash-verified

241 }
242
243 fn notify_data_removed(&self, offset: u64, len: usize) {
244 unsafe {
245 BNNotifyDataRemoved(self.as_ref().handle, offset, len as u64);
246 }
247 }
248
249 fn offset_has_code_semantics(&self, offset: u64) -> bool {
250 unsafe { BNIsOffsetCodeSemantics(self.as_ref().handle, offset) }

Callers

nothing calls this directly

Implementers 1

binary_view.rsrust/src/binary_view.rs

Calls 1

as_refMethod · 0.45

Tested by

no test coverage detected