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

Method keys

rust/src/settings.rs:91–96  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

89 }
90
91 pub fn keys(&self) -> Array<BnString> {
92 let mut count = 0;
93 let result = unsafe { BNSettingsKeysList(self.handle, &mut count) };
94 assert!(!result.is_null());
95 unsafe { Array::new(result as *mut *mut c_char, count, ()) }
96 }
97
98 // TODO Update the settings API to take an optional BinaryView or Function. Separate functions or...?
99

Callers 3

mainFunction · 0.45
generator.pyFile · 0.45
mainFunction · 0.45

Calls

no outgoing calls

Tested by 1

mainFunction · 0.36