(&self, offset: u64, len: usize)
| 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) } |
nothing calls this directly
no test coverage detected