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

Method next_valid_offset_after

rust/src/binary_view.rs:117–125  ·  view source on GitHub ↗
(&self, offset: u64)

Source from the content-addressed store, hash-verified

115 }
116
117 fn next_valid_offset_after(&self, offset: u64) -> u64 {
118 let start = self.as_ref().start();
119
120 if offset < start {
121 start
122 } else {
123 offset
124 }
125 }
126
127 #[allow(unused)]
128 fn modification_status(&self, offset: u64) -> ModificationStatus {

Callers

nothing calls this directly

Implementers 2

binary_view.rsrust/src/binary_view.rs
view.rsview/minidump/src/view.rs

Calls 2

startMethod · 0.45
as_refMethod · 0.45

Tested by

no test coverage detected