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

Method append_data

rust/src/data_buffer.rs:89–91  ·  view source on GitHub ↗

concat the contents of `data` into self

(&self, data: &[u8])

Source from the content-addressed store, hash-verified

87
88 /// concat the contents of `data` into self
89 pub fn append_data(&self, data: &[u8]) {
90 unsafe { BNAppendDataBufferContents(self.0, data.as_ptr() as *const c_void, data.len()) }
91 }
92
93 /// Return the byte at `offset`
94 pub unsafe fn byte_at(&self, offset: usize) -> u8 {

Callers

nothing calls this directly

Calls 1

lenMethod · 0.45

Tested by

no test coverage detected